function CheckInput()
  {
  var text;
  text = " ";
  if (document.adresse.name.value  == "")    text = " Name/Name, ";
  if (document.adresse.strasse.value  == "") text = text + "Strasse/Street, ";
  if (document.adresse.plz.value  == "")     text = text + "Postleitzahl/Post Code, ";
  if (document.adresse.ort.value  == "")     text = text + "Ort/City , ";
  if (document.adresse.email.value  == "")   text = text + "E-Mail/Email Address, ";
  if (document.adresse.land.value  == "")    text = text + "Land/Country, ";
  if (document.adresse.anzahldt.value  == "" && document.adresse.anzahlengl.value  == "")    text = text + " Anzahl/Copies";
  if (document.adresse.rechnung.value == "") text = text + "Rechnung/Receipt";

  if (text != " ")
    {
    alert ("Folgende Felder wurden noch nicht ausgefuellt: " + text);
    return false;
    }
  return true;
  }