<!--
function CheckKontaktForm() {
	whatForm = document.forms.KontaktForm;
	bAllesOK = true;
	if (bAllesOK && !CheckEmail(whatForm.KontEMail) ) {
		alert("Bitte korrekte Email angeben!");
		whatForm.KontEMail.focus();
		bAllesOK = false;
	}
	if (bAllesOK) {
		strPersTextKontakt = whatForm.KontNachricht.value;
		strPersTextKontakt = strPersTextKontakt.toLowerCase();
		if (strPersTextKontakt.indexOf("url=") > -1 || strPersTextKontakt.indexOf("a href") > -1) {
			alert("Es sind keine HTML-Zeichen erlaubt!");
			whatForm.KontNachricht.focus();
			bAllesOK = false;
		}
	}

	if (bAllesOK) {
		whatForm.submit();
	}
}
-->
