
<!--
function Validator(theForm)
  {
  if (theForm.bedrijfsnaam.value=='')
    {
      alert("Wat is de naam van uw bedrijf?");
      theForm.bedrijfsnaam.focus();
      return (false);
    }
  if (theForm.contactpersoon.value=='')
    {
      alert("Wat is de naam van de contactpersoon?");
      theForm.contactpersoon.focus();
      return (false);
    }
  if (theForm.telefoon.value=='')
    {
      alert("Wat is uw telefoonnummer?");
      theForm.telefoon.focus();
      return (false);
    }
  if (theForm.email.value=='')
    {
      alert("Wat is uw e-mailadres?");
      theForm.email.focus();
      return (false);
    }
  if (theForm.email.value.indexOf('@',0)==-1)
    {
      alert("Dit is geen geldig e-mailadres!");
      theForm.email.focus();
      return (false);
    }
  if (theForm.email.value.indexOf('.',0)==-1)
    {
      alert("Dit is geen geldig e-mailadres!");
      theForm.email.focus();
      return (false);
    }
  return (true)
}
//-->
 
