function validate()
{
  
  var correct = true; 
  
  if (document.Kontakt.Vorname.value == "")    
  {
    correct = false; 
    document.Kontakt.Vorname.focus();
  }
  
  if (document.Kontakt.Nachname.value == "")   
  {
    correct = false; 
    document.Kontakt.Nachname.focus();
  }
  
  if (document.Kontakt.Ort.value == "")   
  {
    correct = false; 
    document.Kontakt.Ort.focus();
  }
  
  if (document.Kontakt.EMail.value == "" && document.Kontakt.Telefon.value  == "")
  {
    correct = false; 
    if (document.Kontakt.EMail.value == "")
    {
      document.Kontakt.EMail.focus();
    }
    else
    {
      document.Kontakt.Telefon.focus();
    }
  }
  
  if (correct)
  {
    return true;
  }
  else
  {
    alert(unescape("Bitte %FCberpr%FCfen Sie Ihre Formulareingaben%21"));
    return false;
  }
  
}
