function load() {
      if (GBrowserIsCompatible()) {

        var map = new GMap2(document.getElementById("map"));
        map.addMapType(G_PHYSICAL_MAP);
        map.setCenter(new GLatLng(52.403292,13.057000), 13, G_MAP_TYPE);
        map.addControl(new GLargeMapControl())

        var mapControl = new GHierarchicalMapTypeControl();

        // Set up map type menu relationships
        mapControl.clearRelationships();
        mapControl.addRelationship(G_SATELLITE_MAP, G_HYBRID_MAP, "Labels", false);

        var icon = new GIcon();
		icon.image = "http://www.andre-prochnow.de/img/andre-prochnow_logo.png";
		icon.iconSize = new GSize(69, 76);
		icon.iconAnchor = new GPoint(0, 76);
		icon.infoWindowAnchor = new GPoint(5, 1);
		
        // Add control after you've specified the relationships
        map.addControl(mapControl);
        map.addOverlay(new GMarker(new GLatLng(52.403180,13.056800), icon));
      }
    }

function DynBox(boxname) {
    if (document.getElementById(boxname).style.display == 'none') {
        document.getElementById(boxname).style.display = 'block';
	} else {
	    document.getElementById(boxname).style.display = 'none';
	}

}

function CloseDynBox(boxname) {
	    document.getElementById(boxname).style.display = 'none';
}



