/* verwendet in mform.php */
function chkFormular()
{
 if (document.Formular.Maschine.value == "")
  {
   alert("Which model do you like to evaluate?");
   document.Formular.Maschine.focus();
   return false;
  }
 if (document.Formular.Ausstattung.value == "")
  {
   alert("Please briefly describe the machine's equipment.");
   document.Formular.Ausstattung.focus();
   return false;
  }
 if (document.Formular.Erfahrungen.value == "")
  {
   alert("Please describe your experiences with the machine.");
   document.Formular.Erfahrungen.focus();
   return false;
  }
 if (document.Formular.realname.value == "")
  {
   alert("Please enter your name!");
   document.Formular.realname.focus();
   return false;
  }
}
