	if (GBrowserIsCompatible()) {

			function createMarker(point,html) {
				var marker = new GMarker(point);
				GEvent.addListener(marker, "click", function() {
					marker.openInfoWindowHtml(html);
				});
				return marker;
			}

			var map = new GMap2(document.getElementById("map"));
			map.addControl(new GSmallZoomControl());
			map.addControl(new GMapTypeControl());

			map.setCenter(new GLatLng(53.34489,-6.234913), 15);


			//enable smooth zooming
			map.enableContinuousZoom();
			map.enableDoubleClickZoom();

			var point = new GLatLng(53.34489,-6.234913);
			var marker = createMarker(point, '<p><strong>Select Strategies<\/strong><br \/>7 Butler\'s Court<br \/>77 Sir John Rogerson\'s Quay<br \/>Dublin 2<\/p>');
			map.addOverlay(marker);

		}

		else {
			alert("Sorry, the Google Maps API is not compatible with this browser");
	}

// This Javascript is based on code provided by the
// Blackpool Community Church Javascript Team
// http://www.commchurch.freeserve.co.uk/   
// http://www.econym.demon.co.uk/googlemaps/

