function eingabecheck(theForm)
{
  if (theForm.name.value == "")
  {
    alert("Geben Sie Ihren Namen in das Feld \"Name\" ein.");
    theForm.name.focus();
    return (false);
  }
  
  if(theForm.email.value == "")
  {
   alert("Bitte geben Sie Ihre EMail-Adresse in das Feld \"EMail\" ein!");
   theForm.email.focus();
   return false;
  }
  
  if(theForm.email.value.indexOf('@') == -1 || theForm.email.value.indexOf('.') == -1)
  {
   alert("Keine gueltige E-Mail-Adresse!");
   theForm.email.focus();
   return false;
  }
  
  return (true);
}
