function checkFields() {
	var allValid = true;
	for  (i = 1; i < document.Formular.length; i++ ) {
		//alert (document.Formular[i].name + " - " + i);
		if ( document.Formular[i].name.length != null ) {
			if ( document.Formular[i].name.substr(0,1) == "*"  ) {
				if (document.Formular[i].value.length == 0) {
					allValid = false;
					alert("Bitte geben Sie einen Wert im Feld " + document.Formular[i].name + " ein!");
					break;
				}
			}
		}
	}
	if (document.Formular.sendfrom.value.length == 0) {
		allValid = false;
		alert("Bitte geben Sie einen Wert im Feld *Email ein!");
	}
	if ( allValid == false ) {
		return (false);
	}
	else {
		document.Formular.submit();
		return (true);
	}
}
