function formproof(xf) {
	var strAlert; var strAlert1; var strAlert2;
	var strAlert0 = unescape('Bitte f%FCllen Sie noch aus:');
	strAlert1 = ''; strAlert2 = '';
	if (document.forms[xf].vorname.value == '') strAlert1 += '->  Vorname\n';
	if (document.forms[xf].nachname.value == '') strAlert1 += '->  Nachname\n';
	if (document.forms[xf].strasse.value == '') strAlert1 += '->  Strasse\n';
	if (document.forms[xf].nr.value == '') strAlert1 += '->  Nr.\n';
	if (document.forms[xf].plz.value == '') strAlert1 += '->  PLZ\n';
	if (document.forms[xf].ort.value == '') strAlert1 += '->  Ort\n';
	if (document.forms[xf].dauer.selectedIndex == 0) strAlert1 += '->  Dauer\n';
	if (document.forms[xf].design.selectedIndex == 0) strAlert1 += '->  Design\n';
	else {
		var reg = /.+@.+\.\w\w+/;
		if (!reg.exec(document.forms[xf].email.value)) strAlert2 = 'Bitte korrigieren Sie Ihre E-Mail-Adresse';
	}

	strAlert = strAlert1 + strAlert2;
	// strAlert = "";
	if (strAlert == '') { 
		document.forms[xf].submit();
		return true;
	}
	if (strAlert1 == '') {
		alert(strAlert2 + "\n\n");
		return false;
	}
	else {
		alert(strAlert0 + "\n\n" + strAlert1 + "\n" + strAlert2 + "\n\n");
		return false;
	}
}