function chkFormular()
{
 if(document.contact.KONTAKT_NAME.value == "")  {
   alert("Bitte Ihren Namen eingeben!");
   document.contact.KONTAKT_NAME.focus();
   return false;
  }
 if(document.contact.KONTAKT_MITGLIEDSNUMMER.value == "") {
   alert("Bitte Ihre Mitgliedsnummer eingeben!");
   document.contact.KONTAKT_MITGLIEDSNUMMER.focus();
   return false;
  } 
 if(document.contact.KONTAKT_EMAIL.value == "") {
   alert("Bitte Ihre E-Mail-Adresse eingeben!");
   document.contact.KONTAKT_EMAIL.focus();
   return false;
  }
 if(document.contact.KONTAKT_WOHIN.value == "") {
   alert("Bitte Empfänger/Thema auswählen!");
   document.contact.KONTAKT_WOHIN.focus();
   return false;
  }
 if(document.contact.KONTAKT_MESSAGE.value == "") {
   alert("Bitte Ihren Nachrichtentext eingeben!");
   document.contact.KONTAKT_MESSAGE.focus();
   return false;
  }
}

