function show(url,width,height)
{
	sirka = width;
	vyska = height;
		
	no=window.open("", "zoomv", "width="+sirka+", height="+height+", toolbar=no, menubar=no,"+
	"scrollbars=no, resizable=no, copyhistory=no");
	with (no.document)
	{
		open();
		writeln('<html>\n<title>Foto</title>\n<body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0" bgcolor="white">\n<center>');
		writeln('<img src="'+url+'" width="'+sirka+'" height="'+vyska+'" border="0">');
		close();
	}
} 

function Kontrola ()
{
   
   var formular = document.getElementById('formular');	
	
   if (formular.jmeno.value == "")
   {
      formular.jmeno.focus();
      alert ("Nezadali jste jméno");
      return false;
   }
   if (formular.telefon.value == "")
   {
      formular.telefon.focus();
      alert ("Nezadali jste telefon");
      return false;
   }
}

