//<![CDATA[

function load() {
  if (GBrowserIsCompatible()) {
      	
   	var icon = new GIcon();
	icon.image = "http://index.estorm.pl/images/layout/icons/project3_small01.png";

	icon.iconSize = new GSize(32, 32);
	icon.iconAnchor = new GPoint(6, 20);
	icon.infoWindowAnchor = new GPoint(25, 1);
	   	
    var map = new GMap2(document.getElementById("mapa-lodz"));
    map.setCenter(new GLatLng(51.773314, 19.448290), 16);
	var marker = new GMarker(new GLatLng(51.77223, 19.447880), icon);
  	GEvent.addListener(marker, "click", function() {
    	marker.openInfoWindowHtml("<br/><h4>eStorm Internet Technologies</h4><b>Oddział w Łodzi:</b><br>ul. Więckowskiego 33 P.130<br>90-734 Łódź<br>tel. +48 42 296 02 57<br> fax. +48 42 296 02 58");
  	});
	map.addOverlay(marker);
	map.addControl(new GSmallMapControl());
 }
}

//]]>