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.4106962, 13.0569957);marker = new GMarker(point, markerOptions);var info = '<img src="http://www.spidertrip.de/Bilder/Bild_767_kl.jpg" width="120" height="90" align="left" hspace="10"><div style="float: left; width: 150px;"><a href="/potsdam/russische_kolonie_alexandrowka.htm">Russische Kolonie Alexandrowka</a><br><font size="-1">Russische Kolonie Alexandrowka in Potsdam<br>Kategorie: Historische Museen</font></div>';map.addOverlay(marker);marker.bindInfoWindow(info);}}
