function checkform () {
  if (document.form_mailform.name.value == "Name...") {
    alert("Bitte geben Sie ihren Namen an.");
    document.form_mailform.name.focus();
    return false;
  }
  if (document.form_mailform.email.value == "E-Mail...") {
    alert("Bitte geben Sie ihre E-Mail Adresse an.");
    document.form_mailform.email.focus();
    return false;
  }
  if (document.form_mailform.mitteilung.value == "") {
    alert("Sie wollen uns eine leere Nachricht senden? Das versuchen wir nochmal.");
    document.form_mailform.mitteilung.focus();
    return false;
  }
}

function checkform_en () {
  if (document.form_mailform.name.value == "Name...") {
    alert("Please enter your name.");
    document.form_mailform.name.focus();
    return false;
  }
  if (document.form_mailform.email.value == "E-Mail...") {
    alert("Please enter your e-mail.");
    document.form_mailform.email.focus();
    return false;
  }
  if (document.form_mailform.mitteilung.value == "") {
    alert("You want to write an empty mail? Please try again.");
    document.form_mailform.mitteilung.focus();
    return false;
  }
}
