function open_in_window(imgsrc) {

winWidth = 640;
winHeight = 480;

posx = (screen.width/2)-(winWidth/2);
posy = (screen.height/2)-(winHeight/2);

page = window.open('','','toolbar=no, scrollbars=yes, resizable=no, status=no, location=no, directories=no, width='+winWidth+', height='+winHeight+', menubar=no, left='+posx+', top='+posy);


page.document.writeln("<html>");

page.document.writeln("<head>");
page.document.writeln("<title>Galeria - produkty</title>");
page.document.writeln("</head>");

page.document.writeln("<body leftmargin='0' rightmargin='0' topmargin='0' bottommargin='0'>");
page.document.writeln("<table border='0' cellpadding='0' cellspacing='0' height='100%' width='100%'>");
page.document.writeln("<tr><td align='center'>");

page.document.writeln("<img src='" +imgsrc+ "'>");

page.document.writeln("</td></tr>");
page.document.writeln("</table>");
page.document.writeln("</body>");

page.document.writeln("</html>");

page.document.close();
return false;
}
