<!-- GOOGLE MAPS
function initialize() {
	 if (GBrowserIsCompatible()) {
		 var map = new GMap2(document.getElementById("map_canvas"));
		 map.addControl(new GLargeMapControl());

		 map.addControl(new GMapTypeControl());
		 map.setCenter(new GLatLng(53.954868, -1.076688), 15);

			// Our info window content
	 var text="<div style='background-color:#FFFFFF'><b>Hotel 53</b></div><div style='font-size:11px;background-color:#FFFFFF'>53, Piccadilly,</div><div style='font-size:11px;background-color:#FFFFFF'>York YO1 9PL</div></form>";
	 var text1="<div style='margin-top:3px; font-size:11px;'>Enter Starting Address:</div><form target='_blank' method='get' action='http://maps.google.com/maps'><div><input type='hidden' name='daddr' value='53, Piccadilly, York YO1 9PL' /><div><input id='saddr' type='text' size='35' name='saddr' /></div><div><input type='submit' name='btnG' value='Get Directions' /></div>";
	 
			 // Our info window content
	 var text2="<div><b>The Hempel</b></div><div style='font-size:11px;'>53, Piccadilly,</div><div style='font-size:11px;background-color:#FFFFFF'>York YO1 9PL</div></form>";
	 var text3="<div style='margin-top:3px; font-size:11px;'>Enter Starting Address:</div><form target='_blank' method='get' action='http://maps.google.com/maps'><div><input type='hidden' name='daddr' value='53, Piccadilly, York YO1 9PL' /><div><input id='saddr' type='text' size='35' name='saddr' /></div><div><input type='submit' name='btnG' value='Get Directions' /></div>";

		 var infoTabs = [
		 new GInfoWindowTab("Address", text),
		 new GInfoWindowTab("Directions", text1)
		 ];
		 var infoTabs1 = [
		 new GInfoWindowTab("Address", text2),
		 new GInfoWindowTab("Directions", text3)
		 ];		

		 // Place a marker in the center of the map and open the info window
		 // automatically
		 var marker = new GMarker(map.getCenter());
		 GEvent.addListener(marker, "click", function() {
		 marker.openInfoWindowTabsHtml(infoTabs);
		 });
		 map.addOverlay(marker);
		 marker.openInfoWindowTabsHtml(infoTabs);

		// Creates a marker at the given point with the given number label
		 function createMarker(point, number) {
			 var marker = new GMarker(point);
			 GEvent.addListener(marker, "click", function() {
			 marker.openInfoWindowTabsHtml(infoTabs1);
			 });
			 return marker;
		 } 
	 }
 }
//-->