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>Oborský rybník</title>\n<body topmargin="0" leftmargin="0" bgcolor="#CCDC95"\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();
}
} 

function zoomv(name)
{
iMyWidth = (window.screen.width/2) - (200 + 10)
iMyHeight = (window.screen.height/2) - (300 + 25)
no=window.open("", "zoom", "height=600, width=400, 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>Oborský rybník</title>\n<body topmargin="0" leftmargin="0" bgcolor="#CCDC95"\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();
}
} 

function Kontrola ()
{
   if (document.formular.jmeno.value == "")
   {
      document.formular.jmeno.focus();
      alert ("Nezadali jste jméno");
      return false;
   }
   if (document.formular.email.value == "")
   {
      document.formular.email.focus();
      alert ("Nezadali jste email");
      return false;
   }
}







