function eingabeCheck()
{

if (document.dokumentation.anrede.value == "" ||document.dokumentation.anrede.value == null)
{
alert("Bitte geben Sie Ihre Anrede an.");
document.dokumentation.anrede.focus();
return false;
}  

if (document.dokumentation.vorname.value == "" ||document.dokumentation.vorname.value == null)
{
alert("Bitte geben Sie Ihren Vornamen an.");
document.dokumentation.vorname.focus();
return false;
}  
 
if (document.dokumentation.name.value == "" ||document.dokumentation.name.value == null)
{
alert("Bitte geben Sie Ihren Namen an.");
document.dokumentation.name.focus();
return false;
} 
  
if (document.dokumentation.adresse.value == "" ||document.dokumentation.adresse.value == null)
{
alert("Bitte geben Sie Ihre Adresse an.");
document.dokumentation.adresse.focus();
return false;
}  
 
if (document.dokumentation.plz.value == "" ||document.dokumentation.plz.value == null)
{
alert("Bitte geben Sie die Postleitzahl Ihres Wohnorts an.");
document.dokumentation.plz.focus();
return false;
}
 
if (document.dokumentation.ort.value == "" ||document.dokumentation.ort.value == null)
{
alert("Bitte geben Sie Ihren Wohnort an.");
document.dokumentation.ort.focus();
return false;
}

if (document.dokumentation.land.value == "" ||document.dokumentation.land.value == null)
{
alert("Bitte geben Sie das Land Ihres ständigen Wohnsitzes an.");
document.dokumentation.land.focus();
return false;
}

if (document.dokumentation.email.value == "" ||document.dokumentation.email.value == null)
{
alert("Bitte geben Sie eine gültige E-Mail-Adresse an.");
document.dokumentation.email.focus();
return false;
} 
  
else   
return true;
}

