function chkFormularFehler() { if (document.Formular.email.value == "") { alert("Bitte geben Sie Ihre E-Mail-Adresse ein."); document.Formular.email.focus(); return true; } } function chkFormularFehler2(){ if (document.Formular2.email.value == "") { alert("Bitte geben Sie Ihre E-Mail-Adresse ein."); document.Formular2.email.focus(); return true; } return false; } function chkFormular(){ if(!chkFormularFehler()){ document.Formular.submit(); } } function chkFormular2(){ if(!chkFormularFehler2()){ document.Formular2.submit(); } } function Werteliste(querystring) { if(querystring == '') return; var wertestring = unescape(querystring); wertestring = wertestring.slice(1); var paare = wertestring.split("&"); for (var i=0; i < paare.length; i++) { var name = paare[i].substring(0, paare[i].indexOf("=")); var wert = paare[i].substring(paare[i].indexOf("=")+1, paare[i].length); this[name] = wert; } } function setAbmeldenAdresse(){ var liste = new Werteliste(window.location.search); if(liste["email"] !== undefined){ document.Formular2.email.value = liste["email"]; } } function resetFormularAbmelden(){ document.Formular2.reset(); } //-->
Bitte bestätigen Sie Ihre E-Mail-Adresse. |