    function load() {
      if (GBrowserIsCompatible()) {
	    var infoTabs = [new GInfoWindowTab("Address","<img src=http://www.dataentry.ie/eceltic.png></img> e-Celtic  <br> 40 Lower Leeson St. <br>Dublin 2 <br>Ph:+353-1-6625810 "),
						new GInfoWindowTab("Map", "<a href=http://www.dataentry.ie/images/largemap.gif><img src=http://www.dataentry.ie/images/locationmap.gif /></a>")
						];
        var map = new GMap2(document.getElementById("map"));
        map.setCenter(new GLatLng(53.333279,-6.254295), 15);
		map.setMapType(G_HYBRID_MAP);
		var blueIcon = new GIcon(G_DEFAULT_ICON);
		blueIcon.iconSize = new GSize(16, 16);
		blueIcon.shadowSize = new GSize(1, 1);
		blueIcon.image = "http://www.dataentry.ie/eceltic.png";
		markerOptions = { icon:blueIcon ,draggable: false,clickable:true };
		var bounds = map.getBounds();
		var southWest = bounds.getSouthWest();
		var northEast = bounds.getNorthEast();
		var lngSpan = northEast.lng() - southWest.lng();
		var latSpan = northEast.lat() - southWest.lat();
		var point = new GLatLng(53.333279 ,-6.254295);
		var pointZ = new GLatLng(53.333279 ,-6.254295);
		
		var Zmarker = new GMarker(pointZ, {draggable: false , clickable:true });
		GEvent.addListener(Zmarker, "click", function() {
							  Zmarker.openInfoWindowTabsHtml(infoTabs);
							  });
		
		map.addOverlay(Zmarker);
		map.addControl(new GSmallMapControl());
		map.addControl(new GMapTypeControl());
		
		
		
      }
    }
   
 