function chkKontaktForm () {
  if (document.kontaktForm.Name.value == "") {
    alert("Bitte Ihren Namen eingeben!");
    document.kontaktForm.Name.focus();
    return false;
  }
  if (document.kontaktForm.Strasse.value == "") {
    alert("Bitte die Strasse eingeben!");
    document.kontaktForm.Strasse.focus();
    return false;
  }
  if (document.kontaktForm.Nr.value == "") {
    alert("Bitte die Hausnummer eingeben!");
    document.kontaktForm.Nr.focus();
    return false;
  }
  if (document.kontaktForm.PLZ.value == "") {
    alert("Bitte die Postleitzahl eingeben!");
    document.kontaktForm.PLZ.focus();
    return false;
  }
  if (document.kontaktForm.Ort.value == "") {
    alert("Bitte den Wohnort eingeben!");
    document.kontaktForm.Ort.focus();
    return false;
  }
  if (document.kontaktForm.Mail.value == "") {
    alert("Bitte Ihre E-Mail-Adresse eingeben!");
    document.kontaktForm.Mail.focus();
    return false;
  }
  if (document.kontaktForm.Mail.value.indexOf("@") == -1) {
    alert("Keine E-Mail-Adresse!");
    document.kontaktForm.Mail.focus();
    return false;
  }
}

// Google-Maps
var map;
function mapLoad() {

    var Latlng = new google.maps.LatLng(47.563087, 8.773611);
    var Options = {
      zoom: 14,
      center: Latlng,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    }
    var map = new google.maps.Map(document.getElementById("map"), Options);

    var Image = new google.maps.MarkerImage(
      'favicon.ico',
      new google.maps.Size(32, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(16, 16)
    );

    var Latlng = new google.maps.LatLng(47.563087, 8.773611);
    var InfoWindow = new google.maps.InfoWindow({
        content: "Permanent Make-Up<br/>Altikerstrasse 54 / Im Grüt<br/>8474 Dinhard - Schweiz"
    });
    var Marker = new google.maps.Marker({
        position: Latlng,
//        icon: Image,
        map: map,
        title: "Permanent Make-Up"
    });
    google.maps.event.addListener(Marker, 'click', function() {
      InfoWindow.open(map,Marker);
    });
}
