          function load() {
              if (GBrowserIsCompatible()) {
                var map = new GMap2(document.getElementById("gmap"));
                map.addControl(new GSmallMapControl());
                map.setCenter(new GLatLng(50.105153, 14.525321), 4);
                
                var icon = new GIcon();
                icon.image = "http://www.hemp-technology.com/wp-content/themes/hemp-technology/layout/gmap.gif";        
                icon.iconSize = new GSize(138, 25);        
                icon.iconAnchor = new GPoint(0, 0); 
                                
                var point_ht = new GLatLng(50.105153, 14.525321);
                map.addOverlay(new GMarker(point_ht, icon)); 
              }
            }
