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);
      }		  
   
    return (true);
    }	

