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