function chkFormular()
{
    if(document.Formular.author.value == "")  {
   alert("Vul je naam in!");
   document.Formular.author.focus();
   return false;
   }

   if(document.Formular.email.value == "")  {
   alert("Vul je E-mailadres in!");
   document.Formular.email.focus();
   return false;
   }

   if(document.Formular.comment.value == "")  {
   alert("Schrijf je reactie/vraag!");
   document.Formular.comment.focus();
   return false;
   }
}

