function print(id) {
	var noweOkno = window.open("about:blank", "nowe", "width=520,height=400,top=10,left=10,resizable=yes,scrollable=yes,toolbar=yes");
	noweOkno.document.open();
	noweOkno.document.write("<html><head><meta http-equiv='Content-Type' content='text/html; charset=utf-8'>");
	//noweOkno.document.write("<link rel='stylesheet' type='text/css' href='style.css' />");
	noweOkno.document.write("</head><body onload='window.print()'><div style='overflow:scroll'>");
	var tresc = document.getElementById(id).innerHTML;
	noweOkno.document.write(tresc);
	noweOkno.document.write("</div></body></html>");
	noweOkno.document.close();
}



