function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.setCenter(new GLatLng(55.940055, 23.324715), 16);
        map.addControl(new GSmallMapControl());
        
		var icon = new GIcon();
        icon.image = "img/gmap.gif";
        icon.iconSize = new GSize(69, 30);
        icon.iconAnchor = new GPoint(0, 0);
        icon.infoWindowAnchor = new GPoint(0, 0);
        
		var bounds = map.getBounds();
        var southWest = bounds.getSouthWest();
        var northEast = bounds.getNorthEast();
		var point = new GLatLng(55.940055, 23.324995);
		
        map.addOverlay(new GMarker(point, icon));
      }
}

<!-- Popup window -->
<!-- Begin
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=655,height=900,left = 472.5,top = 40');");
}
// End -->
