function load() {

	if (GBrowserIsCompatible()) { 
		function createMarker(point,html) {
			var marker = new GMarker(point);
			GEvent.addListener(marker, "click", function() {
				marker.openInfoWindowHtml(html);
			});
			return marker;
		}

		// Display the map, with some controls and set the initial location 
		var map = new GMap2(document.getElementById("map"));
		map.addControl(new GLargeMapControl());
		map.addControl(new GMapTypeControl());
		map.setCenter(new GLatLng(50.9226,-1.308365),11);

		// Set up three markers with info windows 

		var point = new GLatLng(50.9226,-1.308365);
		var marker = createMarker(point,'Peak Development Ltd')
		map.addOverlay(marker);
		

	} else {
		alert("Sorry, the Google Maps API is not compatible with this browser");
	}
}