function Form1_Validator(theForm)
{

  if (theForm.contactpersoon.value == "")
  {
    alert("Veuillez ajouter votre nom.");
    theForm.contactpersoon.focus();
    return (false);
  }

  if (theForm.telefoon.value == "")
  {
    alert("Veuillez ajouter votre no de tél.");
    theForm.telefoon.focus();
    return (false);
  }

    return (true);
}


