function googleMapLoad()
 {	
	  if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
	    map.addControl(new GLargeMapControl());
        
		map.setCenter(new GLatLng('53.158467212073326','18.17464828491211'), 14);   
		map.enableDoubleClickZoom();
		
        // Our info window content
        var infoTabs = [
          new GInfoWindowTab("Tab #1", "Biuro Rachunkowe Zaksiegujemy.pl<br>ul. Piłsudskiego 7<br>85-793 Bydgoszcz")
		  //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);
        
      }
 }
