function contactform_Validator(theForm)
{

 	var aantal
	aantal = theForm.naam.value
	aantal = aantal.length
  if (aantal < 2)
  {
    alert("U heeft geen naam ingevuld.");
    theForm.naam.focus();
    return (false);
  }
	aantal = theForm.email.value
	aantal = aantal.length
  if (aantal < 7 )
  {
    //alert("U heeft geen geldig Email adres ingevuld.");
   // theForm.email.focus();
    //return (false);

  }
	aantal = theForm.bericht.value
	aantal = aantal.length
  if (aantal < 10)
  {
    alert("U heeft geen geldig bericht ingevuld.");
    theForm.bericht.focus();
    return (false);
  }

  return (true);
}

