<script language="JavaScript">

<!--
function check_form(theForm)
{
  if (theForm.Name.value == "")
  {
    theForm.Name.focus();
    return (false);
  }
  if (theForm.Mail.value == "")
  {
    theForm.Mail.focus();
    return (false);
  }
  if (theForm.Nachricht.value == "")
  {
    theForm.Nachricht.focus();
    return (false);
  }
  return (true);
}
//-->
