function zoom(name)
{
iMyWidth = (window.screen.width/2) - (300 + 10)
iMyHeight = (window.screen.height/2) - (200 + 25)
no=window.open("", "zoom", "height=400, width=600, resizable=no, menubar=no, toolbar=no, resizable=no, copyhistory=no, left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=no");
with (no.document)
{
open();
writeln('<html>\n<title>Pizzazz Blansko - fotogalerie</title>\n<body topmargin="0" leftmargin="0" bgcolor="#F6E980"\n<center>');
writeln('<a href="javascript:window.close()"><img src="foto/'+name+'_big.jpg" border="0" alt="zavøít">');
writeln('</center>\n</body>\n</html>');
close();
}
} 








