<!-- Hide from old browsers

function openW(detail) {
     newWindow = window.open(detail,"detail","toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,width=620,height=550")
     newWindow.self.focus()
}


function noSpam(user,domain) {
locationstring = "mailto:" + user + "@" + domain;
window.location = locationstring;
}

function formCheck() {
        validity = true; // assume valid

if (document.form.text.value=="") {
alert("Bitte IHRE MEINUNG eingeben");document.form.text.focus();return false
}
if (document.form.vorname.value=="") {
alert("Bitte Ihren Vornamen eintragen!");document.form.vorname.focus();return false
}
if (document.form.name.value=="") {
alert("Bitte Ihren Namen eintragen!");document.form.name.focus();return false
}
if (document.form.adresse.value=="") {
alert("Bitte tragen Sie Ihre Adresse ein, sie wird NICHT veršffentlicht");document.form.adresse.focus();return false
}
if (document.form.plz.value=="") {
alert("Bitte die Postleitzahl angeben, sie wird NICHT veršffentlicht");document.form.plz.focus();return false
}
if (document.form.ort.value=="") {
alert("Bitte geben Sie uns Ihren Wohnort bekannt");document.form.ort.focus();return false
}
if  (document.form.abr.checked==false) {
alert("Bitte akzeptieren Sie die Allg. Benutzerreglen");document.form.abr.focus();return false
}

if (validity) return validity;
}


// -- End Hiding Here -->

