function Form1_Validator(theForm)
{

  if (theForm.naam.value == "")
  {
    alert("Veuillez ajouter votre nom.");
    theForm.naam.focus();
    return (false);
  }

  if (theForm.keuze.value == "")
  {
    alert("Veuillez faire un choix.");
    theForm.keuze.focus();
    return (false);
  }
  
   if (theForm.btw.value == "")
  {
    alert("Votre no tva? Particuliers: mettez 0.");
    theForm.btw.focus();
    return (false);
  }
  
  if (theForm.straat.value == "")
  {
    alert("Veuillez ajouter votre rue et no.");
    theForm.straat.focus();
    return (false);
  }
  
  if (theForm.woonplaats.value == "")
  {
    alert("Veuillez ajouter votre commune.");
    theForm.woonplaats.focus();
    return (false);
  }
  
  if (theForm.mail.value == "")
  {
    alert("Veuillez ajouter votre adresse email.");
    theForm.mail.focus();
    return (false);
  }

    return (true);
}


