 
function Win(P) {
var newWindow;
newWindow = window.open("","","resizable=yes,scrollbars=yes,width=" + 500 + ",height=" + 550);
newWindow.document.open();
newWindow.document.write("<html>");
newWindow.document.write("<title>DRASLOVKA KOLÍN a.s., Lučební závody.</title>");
newWindow.document.write("<body bgcolor=FFFFFF leftmargin=0 topmargin=0 SCROLLBAR-FACE-COLOR=FFFFFF SCROLLBAR-HIGHLIGHT-COLOR=FFFFFF>");
newWindow.document.write("<a href=\"javascript:window.close()\"><img src="+ P +" border=0></a>");
newWindow.document.write("</body></html>");
newWindow.document.close();
}