function requestMap() {

	var map = new GMap2(document.getElementById("map"));
	map.addControl(new GLargeMapControl());
	map.setCenter(new GLatLng(33.759343, -117.978633), 15);
	
	// 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.openInfoWindowHtml("<table width='215'><tr><td><strong>The Sanctuary HB</strong></td></tr><tr><td><img src='http://www.sanctuaryhb.com/images/googlemaps.jpg' border='0' width='195px' height='95' /></td></tr><tr><td>8642 Westminster Blvd.<br />Westminster, CA 92683<br />714-893-7437</td></tr></table><br /><a target='_blank' href='http://maps.google.com/maps?q=8642 Westminster Blvd%20Westminster,%20CA'>Directions</a>");
		});
		return marker;
	}


	var point = new GLatLng(33.759343, -117.978633);
	map.addOverlay(createMarker(point));

}