// JavaScript Document
function check(form)
{
   if (form.voorletter.value=="")
   {
      alert("Vul uw voorletter(s) in a.u.b.");
      return false;
   }
   else if (form.achternaam.value=="")
   {
      alert("Vul uw achternaam a.u.b. in.");
      return false;
   }
	 else if (form.email.value=="")
   {
      alert("Vul uw e-mail adres a.u.b. in.");
      return false;
   }
	 else if (form.onderwerp.value=="")
   {
      alert("Vul a.u.b. een onderwerp in.");
      return false;
   }
	 else if (form.commentaar.value=="")
   {
      alert("Schrijf a.u.b. uw opmerking/vraag.");
      return false;
   }
}