function load() {if (GBrowserIsCompatible()) {var map = new GMap2(document.getElementById("map"));map.addControl(new GLargeMapControl());map.addControl(new GMapTypeControl());map.setCenter(new GLatLng(49.004448, 11.361344), 7);var Icon = new GIcon(G_DEFAULT_ICON);Icon.image = "http://www.google.com/mapfiles/markerB.png";markerOptions = { icon:Icon };var point = new GLatLng(48.416617, 11.728151);marker = new GMarker(point, markerOptions);var info = '<img src="http://www.spidertrip.de/Bilder/Bild_73_kl.jpg" width="120" height="90" align="left" hspace="10"><div style="float: left; width: 150px;"><a href="/freising/walderlebnispfad.htm">Walderlebnispfad Freising</a><br><font size="-1">Walderlebnispfad in Freising<br>Kategorie: Erlebnispfade</font></div>';map.addOverlay(marker);marker.bindInfoWindow(info);}}
