function Pflichteingabe() 
{
  if (document.kontaktform.anrede.value == "") {
    alert("Bitte Anrede auswählen!");
    document.kontaktform.anrede.focus();
    return false;
	}
  if (document.kontaktform.vorname.value == "") {
    alert("Bitte Ihren Vornamen eingeben!");
    document.kontaktform.vorname.focus();
    return false;
  }
  if (document.kontaktform.nachname.value == "") {
    alert("Bitte Ihren Nachnamen eingeben!");
    document.kontaktform.nachname.focus();
    return false;
  }
  if (document.kontaktform.vor_tel.value == "") {
    alert("Bitte Ihre Vorwahl eingeben!");
    document.kontaktform.vor_tel.focus();
    return false;
  }
  var vor_tel = 1;
  for (i = 0; i < document.kontaktform.vor_tel.value.length; ++i)
    if (document.kontaktform.vor_tel.value.charAt(i) < "0" ||
        document.kontaktform.vor_tel.value.charAt(i) > "9")
      vor_tel = -1;
  if (vor_tel == -1) {
    alert("Vorwahl: Bitte nur Zahlen eingeben!");
    document.kontaktform.vor_tel.focus();
    return false;
  }
  if (document.kontaktform.tel.value == "") {
    alert("Bitte Ihre Telefonnummer eingeben!");
    document.kontaktform.tel.focus();
    return false;
  }
  var tel = 1;
  for (i = 0; i < document.kontaktform.tel.value.length; ++i)
    if (document.kontaktform.tel.value.charAt(i) < "0" ||
        document.kontaktform.tel.value.charAt(i) > "9")
      tel = -1;
  if (tel == -1) {
    alert("Telefonnummer: Bitte nur Zahlen eingeben!");
    document.kontaktform.tel.focus();
    return false;
  }
  if (document.kontaktform.email.value == "") {
    alert("Bitte Ihre E-M@il Adresse eingeben!");
    document.kontaktform.email.focus();
    return false;
  }
  if (document.kontaktform.email.value.indexOf("@") == -1) {
    alert("Es handelt sich um keine E-M@il Adresse!");
    document.kontaktform.email.focus();
    return false;
  }
  if (document.kontaktform.anfrage.value == "") {
    alert("Bitte Ihre Anfrage eingeben!");
    document.kontaktform.anfrage.focus();
    return false;
  }
}
