function isValid() 
{
	var msg = "";
	if (Formular.Mail.value.indexOf("@") < 1 || Formular.Mail.value.indexOf(".") < 1) {
		msg += "- Die E-Mail-Adresse ist syntaktisch nicht korrekt.\n";
	}
	if(Formular.vname.value == "") {
		msg += "- Leeres Feld: Vorname\n";
	}
	if(Formular.name.value == "") {
		msg += "- Leeres Feld: Nachname\n";
	}
	if(Formular.str.value == "") {
		msg += "- Leeres Feld: Strasse\n";
	}
	if(Formular.plz.value == "") {
		msg += "- Leeres Feld: PLZ\n";
	}
	var chkZ = 1;
	for (i = 0; i < Formular.plz.value.length; ++i) {
		if (Formular.plz.value.charAt(i) < "0" || Formular.plz.value.charAt(i) > "9")	{
			chkZ = -1; }
	}
	if (chkZ == -1) {
		msg += "- Postleitzahl keine Zahl\n";
	}
	if (Formular.Ort.value == "") {
	msg += "- Leeres Feld: Ort\n";
	}
	if (Formular.Tel.value == "") {
		msg += "- Leeres Feld: Telefonnummer\n";
	}
	chkZ = 1;
	for (i = 0; i < Formular.Tel.value.length; ++i) {
		if (Formular.Tel.value.charAt(i) < "0" || Formular.Tel.value.charAt(i) > "9") {
			chkZ = -1; }
	}
	if (chkZ == -1) {
		msg += "- Telefonnummer keine Zahl\n";
	}
	chkZ = 1;
	for (i = 0; i < Formular.Fax.value.length; ++i) {
		if (Formular.Fax.value.charAt(i) < "0" || Formular.Fax.value.charAt(i) > "9") {
			chkZ = -1; }
	}
	if (chkZ == -1) {
		msg += "- Faxnummer keine Zahl\n";
	}
	if(Formular.betreff.value == "") {
		msg += "- Leeres Feld: Betreff\n";
	}
	if(Formular.nach.value == "") {
		msg += "- Leeres Feld: Nachricht\n";
	}
	if(msg == "") {
		return true;
	}
	alert(msg);
	return false;
}

