	
	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>Visit Godliman Partners</h2>' + 
							'<label for="postcode">' +
								' We are situated on the corner of Old Broad Street and Threadneedle Street in the former London Stock Exchange Building at 125 Old Broad Street.   The nearest tube station is Bank station.  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" />' +
								'<input type="hidden" name="daddr" value="EC2N 1AR" />' +
							'</form>' +
						'</div>';
				
				GEvent.addListener(marker, "mouseover", 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 GSmallMapControl());

			
			map.setCenter(new GLatLng( 51.5161, -0.08600 ), 16);
			//map.setMapType( G_MAP_TYPE );


			var point = new GLatLng( 51.51416, -0.08644 ); /* 51.51412, -0.08637 */
			var marker = createMarker(point);
			map.addOverlay(marker);

		
			
		} else {
			// display the plain image if the browser is not compatible with Google Maps API
			document.write( "<img style='width:378px; height:378px; border:1px solid #000;' src='/interface/about_us/contact/godliman_location.jpg' alt='Aerial map showing where we are' />" );
		}
		
	}//EOM loadGoogleMap