 var lat=52.2601323;
 var lng=21.0251359;
 var zoom=15;



   function load() {
       if (GBrowserIsCompatible()) {
         var map = new GMap2(document.getElementById("map"));
         map.addControl(new GSmallMapControl ());

         
         map.setCenter(new GLatLng(lat, lng), zoom);
         var point = new GMarker(new GLatLng(lat ,lng));
         map.addOverlay(point);
         GEvent.addListener(point, "click", function() {
        point.openInfoWindowHtml("ESTEY sp. z o.o. <br/> ul. Jagiellońska 58 <br/> 03-468 Warszawa<br/> tel: 22 670 23 21<br/> tel/fax: 22 818 45 91 <br/><a href='mailto:info@estey.com.pl'>info@estey.com.pl</a>");
        });


G_PHYSICAL_MAP.getMinimumResolution = function () { return 10 };
G_NORMAL_MAP.getMinimumResolution = function () { return 10 };
G_SATELLITE_MAP.getMinimumResolution = function () { return 10};
G_HYBRID_MAP.getMinimumResolution = function () { return 10 };

G_PHYSICAL_MAP.getMaximumResolution = function () { return 18 };
G_NORMAL_MAP.getMaximumResolution = function () { return 18 };
G_SATELLITE_MAP.getMaximumResolution = function () { return 18 };
G_HYBRID_MAP.getMaximumResolution = function () { return 18};
       }      
     }

s

