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/markerA.png";markerOptions = { icon:Icon };var point = new GLatLng(49.0317844, 12.2240554);marker = new GMarker(point, markerOptions);var info = '<img src="http://www.spidertrip.de/Bilder/Bild_48_kl.jpg" width="120" height="90" align="left" hspace="10"><div style="float: left; width: 150px;"><a href="/walhalla.htm">Walhalla</a><br><font size="-1">Walhalla bei Regensburg<br>Kategorie: Denkmäler</font></div>';map.addOverlay(marker);marker.bindInfoWindow(info);var Icon = new GIcon(G_DEFAULT_ICON);Icon.image = "http://www.google.com/mapfiles/markerB.png";markerOptions = { icon:Icon };var point = new GLatLng(48.918171, 11.860385);marker = new GMarker(point, markerOptions);var info = '<img src="http://www.spidertrip.de/Bilder/Bild_35_kl.jpg" width="120" height="96" align="left" hspace="10"><div style="float: left; width: 150px;"><a href="/kelheim/befreiungshalle.htm">Befreiungshalle</a><br><font size="-1">Befreiungshalle in Kelheim<br>Kategorie: Denkmäler</font></div>';map.addOverlay(marker);marker.bindInfoWindow(info);}}