function print()
{
	new_window=window.open("","Drukuj","width=640,height=480,scrollbars=1,menubar=1");
	new_window.document.open();
	//new_window.document.write("<body onload='javascript:print();window.close();'>");
	new_window.document.write("<style type='text/css'>body {text-align:justify;} table{border-collapse:collapse;} td{border:1px solid #000;padding:2px;} a {color:#000;text-decoration:none;}</style>");
	new_window.document.write(document.getElementById("text").innerHTML);
	if(new_window.document.getElementById('selector')) new_window.document.getElementById('selector').innerHTML='';
	new_window.document.close();
}
