
function Otevri_okno(pname,pwi,phe)
{
  msg = window.open('',pname, 'toolbar=no,menubar=no,location=no,directories=no,scrollbars=yes,resizable=yes,status=no,width='+pwi+',height='+phe+',top=0,left=0');
  msg.focus();
}  

  function OverNove(theForm)
     {   

     if (theForm.pJmeno.value == "")
      {
       alert("Vyplňte prosím jméno kontaktní osoby.");
       theForm.pJmeno.focus();
       return (false);
      }  
     if (theForm.pTelefon.value == "")
      {
       alert("Vyplňte prosím kontaktní telefon");
       theForm.pTelefon.focus();
       return (false);  }
    return (true);
    }	
