
    //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map"));
map.addControl(new GSmallMapControl());
map.addControl(new GMapTypeControl());
map.setCenter(new GLatLng(48.2263, 16.3465), 15);

// Our info window content
var infoTabs = [
  new GInfoWindowTab("Adressinfo", "ComputerDoktor<br/>Gentzgasse 9<br/>1180 Wien"),
  new GInfoWindowTab("Zeiten", "Mo - Fr<br/>9:30-11:45 Uhr<br/>14:30-16:00 Uhr<br/>Bitte anrufen<br/>(01)  470 70 05<br/>0650 - 946 2121")
];



// 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,maxWidth=400);
});
map.addOverlay(marker);
marker.openInfoWindowTabsHtml(infoTabs);

}
    }
    //]]>