<!--//
var noError;
function sendMessage() {
  noError = "true";
  var outputErrors = document.getElementById("outputErrors");
  if (outputErrors.hasChildNodes()) {
    outputErrors.removeChild(outputErrors.firstChild);
  }
  outputErrors.appendChild(document.createElement("ul"));

  if (document.formContact.textFirstname.value == "") {
    reportError("Bitte geben Sie Ihren Vornamen an!");
  }
  if (document.formContact.textLastname.value == "") {
    reportError("Bitte geben Sie Ihren Nachnamen an!");
  }
  if ((document.formContact.textEmail.value == "") && (document.formContact.textPhone.value == "")) {
    reportError("Bitte geben Sie Ihre eMail-Adresse oder Ihre Telefonnummer an!");
  }
  if (document.formContact.textareaMessage.value == "") {
    reportError("Bitte geben Sie Ihre Nachricht ein!");
  }
  if (noError == "true") {
    document.formContact.submit();
  }
}
function reportError(message) {
  noError = "false";
  var outputErrors = document.getElementById("outputErrors");
  outputErrors.firstChild.appendChild(document.createElement("li"));
  eval("outputErrors.firstChild.lastChild.appendChild(document.createTextNode('" + message + "'))");
}
//-->

