﻿var Contact = {
	post: function() {
		var hasErrors = false;
		$A([$F("a"), $F("anrede"), $F("name"), $F("vorname"), $F("kommentar")]).each(function(value) {
			value = value.replace(/^\s\s*/, '').replace(/\s\s*$/, '');
			if (!hasErrors && value.length == 0) {
				alert("Bitte füllen Sie alle Felder aus.");
				hasErrors = true;
				return;
			}
		});
		if (hasErrors == true) {
			return;
		}
		$("contactForm").request({
			onSuccess: function(transport) {
				if (transport.responseText.indexOf("success") > -1) {
					alert("Danke, wir haben Ihre Kontaktanfrage erhalten.");
					$("contactForm").reset();
				} else {
					alert("Fehler beim Speichern der Änderungen!\r\n\tLade Seite neu.");
					window.location.reload();
				}
			}
		});
	}
}



