	
	function loadGoogleMap() {
		//<![CDATA[

		// Check to see if this browser can run the Google API
		if (GBrowserIsCompatible()) {

			var gmarkers = [];
			var htmls = [];
			var to_htmls = [];
			var from_htmls = [];

			// A function to create the marker and set up the event window
			function createMarker( point ) {
				var marker = new GMarker(point);

				// The info window version with the "to here" form open
				html = 	'<div id="bubble">' +
							'<h2>Visiting Unity</h2>' + 
							'<label for="postcode">' +
								'For travel directions, enter your postcode and click "Get Directions".' +
							'</label>' +
							'<form action="http://maps.google.co.uk/maps" method="get">' +
								'<input type="text" size="12" name="saddr" id="postcode" value="" /> ' +
								'<input value="Get Directions" type="submit" id="directionSubmit" />' +
								'<input type="hidden" id="daddr" name="daddr" value="LS7 3HY" />' +
							'</form>' +
						'</div>';
				
				
				GEvent.addListener(marker, "click", function() {
					marker.openInfoWindowHtml(html);
				});
				
				gmarkers[0] = marker;
				htmls[0] = 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( 53.8121781307007  , -1.53469217336138 ), 15);

			// Set up three markers with info windows 
			var point = new GLatLng( 53.8121781307007  , -1.53469217336138 );
			var marker = createMarker(point);
			map.addOverlay(marker);

		} else {
		
		}
	
	}//EOM loadGoogleMap