function load() {

	var html= " <b>IMPULS s.c</b><br/>Łódz <br/><DIV></DIV>ul. Sienkiewicza 67<br/><a href=mailto:info@biletybilety.pl>info@biletybilety.pl<a/> <br/>Tel. (+48) 042 663 80 00";
    	
    var icon = new GIcon();
    
    	icon.image = "http://www.biletybilety.pl/_gfx/zumi.gif";
		icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
		icon.iconSize = new GSize(20, 20);
		icon.shadowSize = new GSize(22, 20);
		icon.iconAnchor = new GPoint(6, 20);
		icon.infoWindowAnchor = new GPoint(5, 1);    
  
  var map = new GMap2(document.getElementById("map"));
    map.addControl(new GLargeMapControl());
    map.setCenter(new GLatLng(51.762899,19.461609), 15);
    
  
  var point = new GLatLng(51.762899,19.461609);
  
	 function createMarker(point, icon, html) {
		var marker = new GMarker(point, icon);
	
		GEvent.addListener(marker, "click", function() {
			marker.openInfoWindowHtml(html);
		});
		GEvent.addListener(marker, "mouseover", function() {
			marker.openInfoWindowHtml(html);
		});
		return marker;
	}
  
    map.addOverlay(createMarker(point,icon, html));

  
}
