
function load() {
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("GMap"));
		map.setUIToDefault();
		map.disableScrollWheelZoom();
		
		map.setCenter(new GLatLng(51.878810, 19.039800), 6);

		icon0 = new GIcon();
		icon0.image = "http://www.google.com/mapfiles/marker.png";
		icon0.shadow = "http://www.google.com/mapfiles/shadow50.png";
		icon0.iconSize = new GSize(20, 34);
		icon0.shadowSize = new GSize(37, 34);
		icon0.iconAnchor = new GPoint(9, 34);
		icon0.infoWindowAnchor = new GPoint(9, 2);
		icon0.infoShadowAnchor = new GPoint(18, 25);

		var przedst = new GIcon(icon0);
		var point1 = new GLatLng(52.2446722483198, 15.533380508422852);			//Centrala
		var marker1 = new GMarker(point1, przedst);
		map.addOverlay(marker1);
		GEvent.addListener(marker1, "click", function() { 
			map.openInfoWindowHtml(point1,"<div style='color: #666666; line-height:130%; width:250px; font-family:arial; font-size:12px;'><img src='/fileadmin/tmpl/img/logo_g.jpg' alt='' width='200' height='41' /><br /><br /><center><strong>Agencja Interaktywna</strong><br /><strong>bizwebstudio.pl</strong><br />ul. Łużycka 5<br />66-200 Świebodzin</center></div>");
		});

	}
}


