
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 OverCust(theForm)
     {   
     if (theForm.pcNazev1.value == "")
      {
       alert("Vyplňte prosím údaj Jméno/název firmy");
       theForm.pcNazev1.focus();
     return (false);
      }
     if (theForm.pcNazev4.value == "")
      {
       alert("Vyplňte prosím údaj Město/místo");
       theForm.pcNazev4.focus();
     return (false);
      }	
     if (theForm.pcPSC.value == "")
      {
       alert("Vyplňte prosím údaj PSČ");
       theForm.pcPSC.focus();
     return (false);
      }		   
     if (theForm.pcTelefon.value == "")
      {
       alert("Vyplňte prosím údaj Telefon");
       theForm.pcTelefon.focus();
     return (false);
      }	
     if (theForm.pcOsoba.value == "")
      {
       alert("Vyplňte prosím údaj Kontaktní osoba");
       theForm.pcOsoba.focus();
     return (false);
      }		
     if (theForm.pcHeslo.value == "")
      {
       alert("Vyplňte prosím údaj Heslo");
       theForm.pcHeslo.focus();
     return (false);
      }			    	   
   
   
    return (true);
    }	
