function load() {if (GBrowserIsCompatible()) {var map = new GMap2(document.getElementById("map"));map.addControl(new GLargeMapControl());map.addControl(new GMapTypeControl());map.setCenter(new GLatLng(52.5234802, 13.4114943), 7);var Icon = new GIcon(G_DEFAULT_ICON);Icon.image = "http://www.google.com/mapfiles/markerA.png";markerOptions = { icon:Icon };var point = new GLatLng(52.404191, 13.035686);marker = new GMarker(point, markerOptions);var info = '<img src="http://www.spidertrip.de/Bilder/Bild_756_kl.jpg" width="120" height="128" align="left" hspace="10"><div style="float: left; width: 150px;"><a href="/potsdam/historische_muehle.htm">Historische Mühle</a><br><font size="-1">Historische Mühle in Potsdam<br>Kategorie: Aussichtspunkte</font></div>';map.addOverlay(marker);marker.bindInfoWindow(info);}}
