  if (top.location != self.location)
    top.location = self.location


function checkkontakt(formular)
{
    for (var i = 0; i < 3; i++)
    {
  
    if (formular.elements[i].value == '')
      {
        alert("Je nutno vyplnit všechny části formuláře. Prosím doplňte chybějící údaje.");
      formular.elements[i].focus();
      return false;
      }
    } //end for
    return true;
}
function zoom(name, s, v, text)
{
  no=window.open("","zoom","left=10,top=10,width="+s+",height="+v+","+
     "toolbar=no,location=no,directories=no,status=no,menubar=no"+
     ",scrollbars=yes,resizable=no,copyhistory=no");
  with (no.document)
  {
    open();
    writeln('<html>\n<body>');
    if (text)
      writeln('<h2 style=\"text-align:center\">'+text+'</h2>');
    
    writeln('<img src="'+name+'">');
    writeln('<p style="text-align:center" >');
    writeln('<button type="submit" accesskey="z" onclick="window.close();">');
    writeln('Zavřít okno');
    writeln('</button>');
    writeln('</p>');
    writeln('</body>\n</html>');
    close();
  }
}


