// Google Maps - Wegbeschreibung
function load(){
      if (GBrowserIsCompatible()){
        var map = new GMap2(document.getElementById("map"));

        map.addControl(new GSmallMapControl());
        map.addControl(new GMapTypeControl());
        map.setCenter(new GLatLng(52.071553,10.019939), 14);

        // Infofenster anzeigen
        map.openInfoWindow(map.getCenter(),
          document.createTextNode("Kurpark, Bad Salzdetfurth"));
      }
    }

// Guestbook Smilies einfügen
function insEmo(smilie) {
    document.getElementById('nachricht').focus();
    document.getElementById('nachricht').value = document.getElementById('nachricht').value + smilie + " ";
    document.getElementById('nachricht').focus();
}
