
function Form_Validator(theForm)
{
  if (theForm.Naam.value == "")
  {
    alert("Uw naam is nog niet ingevuld.");
    theForm.Naam.focus();
    return (false);
  }

  if (theForm.Email.value == "")
  {
    alert("Uw E-mail is nog niet ingevuld.");
    theForm.email.focus();
    return (false);
  }
  return (true);
}

