function Form1_Validator(theForm)
{

  if (theForm.naam.value == "")
  {
    alert("Gelieve uw naam in te vullen.");
    theForm.naam.focus();
    return (false);
  }

  if (theForm.keuze.value == "")
  {
    alert("Gelieve een keuze te maken.");
    theForm.keuze.focus();
    return (false);
  }
  
  if (theForm.btw.value == "")
  {
    alert("Uw btw-nr? Particulieren: vul 0 in.");
    theForm.btw.focus();
    return (false);
  }
  
  if (theForm.straat.value == "")
  {
    alert("Gelieve uw straat en nr in te vullen.");
    theForm.straat.focus();
    return (false);
  }
  
  if (theForm.woonplaats.value == "")
  {
    alert("Gelieve uw gemeente in te vullen.");
    theForm.woonplaats.focus();
    return (false);
  }
  
  if (theForm.mail.value == "")
  {
    alert("Gelieve uw emailadres in te vullen.");
    theForm.mail.focus();
    return (false);
  }

    return (true);
}


