

function chkKontaktFormular () {
  if (document.KontaktForm.Vorname.value == "") {
   alert("Veuillez indiquer votre prénom! ");
    document.KontaktForm.Vorname.focus();
    return false;
  }
 if (document.KontaktForm.Nachname.value == "") {
   alert("Veuillez indiquer votre nom!");
    document.KontaktForm.Nachname.focus();
    return false;
  } 
   if (document.KontaktForm.Firma.value == "") {
   alert("Veuillez indiquer le nom de votre entreprise!");
    document.KontaktForm.Firma.focus();
    return false;
  } 
  
     if (document.KontaktForm.StrasseHausNr.value == "") {
   alert("Veuillez indiquer votre adresse!");
    document.KontaktForm.StrasseHausNr.focus();
    return false;
  } 
     if (document.KontaktForm.PLZOrt.value == "") {
   alert("Veuillez indiquer le code postal et un lieu!");
    document.KontaktForm.PLZOrt.focus();
    return false;
  } 
  
  
 
     if (document.KontaktForm.Land.value == "X"){
   alert("Choisissez votre pays!");
    document.KontaktForm.Land.focus();
    return false;
  }

    
  if (document.KontaktForm.Telefon.value == ""){
   alert("Veuillez indiquer votre numéro de téléphone!");
    document.KontaktForm.Telefon.focus();
    return false;
  }
   
      
     if (document.KontaktForm.Email.value == ""){
   alert("Veuillez indiquer votre adresse e-mail! ");
    document.KontaktForm.Email.focus();
    return false;
  } 


}



function Fenster(name,xPos,yPos){
	var breite = xPos;
	var hoehe = yPos;
	var posX=(screen.availWidth-breite)/2;
	var posY=(screen.availHeight-hoehe)/2;
    window.open(name,"Fenster", "toolbar=no,width="+breite+",height="+hoehe+",directories=no,status=no,scrollbars=auto,resize=no,resizable=no,menubar=no,screenX=" + posX + ",screenY=" + posY + ",left=" + posX + ",top=" + posY);
}
