function Check(theForm) {

if (theForm.B1.value != "Zurück") {


  if (theForm.Name.value == "")
  {
    alert("Bitte geben Sie Ihren Namen an.");
    theForm.Name.focus();
    return (false);
  }

  if (theForm.eMail.value == "")
  {
    alert("Bitte geben Sie Ihren eMail-Adresse an.");
    theForm.eMail.focus();
    return (false);
  }

  if (theForm.eMail.value.length < 6)
  {
    alert("Bitte geben Sie mindestens 6 Zeichen in das Feld eMail ein.");
    theForm.eMail.focus();
    return (false);
  }

  var checkOK = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzƒŠŒšœŸÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþ0123456789-@.";
  var checkStr = theForm.eMail.value;
  var allValid = true;
  for (i = 0;  i < checkStr.length;  i++)
  {
    ch = checkStr.charAt(i);
    for (j = 0;  j < checkOK.length;  j++)
      if (ch == checkOK.charAt(j))
        break;
    if (j == checkOK.length)
    {
      allValid = false;
      break;
    }
  }
  if (!allValid)
  {
    alert("Bitte benutzen Sie nur Buchstaben, Zahlen, '@' und '.' im Feld eMail.");
    theForm.eMail.focus();
    return (false);
  }

  if (theForm.Strasse.value == "")
  {
    alert("Bitte geben Sie eine Strasse an.");
    theForm.Strasse.focus();
    return (false);
  }

  if (theForm.PLZ.value == "")
  {
    alert("Bitte geben Sie eine Postleitzahl an.");
    theForm.PLZ.focus();
    return (false);
  }

  if (theForm.PLZ.value.length < 5)
  {
    alert("Bitte geben Sie 5 Zeichen im Feld PLZ ein.");
    theForm.PLZ.focus();
    return (false);
  }

  if (theForm.Stadt.value == "")
  {
    alert("Bitte geben Sie eine Stadt an.");
    theForm.Stadt.focus();
    return (false);
  }

  return (true);
}
}