//<![CDATA[    function load() {      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));        map.addControl(new GLargeMapControl());        map.addControl(new GMapTypeControl());        map.setCenter(new GLatLng(51.122820, 12.499591), 16);
      
        // Our info window content		var infoTabs = [  		new GInfoWindowTab("Tab #1", "neuseenBasketball e.V. <br> Dinterhalle, Borna <br> <a href='http://neuseen-basketball.de'>www.neuseen-basketball.de</a>")
  		// , new GInfoWindowTab("Tab #2", "This is tab #2 content")		];		// Place a marker in the center of the map and open the info window automatically		var marker = new GMarker(map.getCenter());		GEvent.addListener(marker, "click", function() {  		marker.openInfoWindowTabsHtml(infoTabs);		});		map.addOverlay(marker);		marker.openInfoWindowTabsHtml(infoTabs);
              }    }//]]>


