function requestMap() {

	var map = new GMap2(document.getElementById("map"));
	map.setCenter(new GLatLng(41.243046,-95.990285), 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><img src='/images/map-logo.jpg' border='0' width='120px' height='78px' align='center' /></td></tr><tr><td>5002 Center St.<br />Omaha, Ne 68106</td></tr></table><br /><a target='_blank' href='http://maps.google.com/maps?f=d&hl=en&geocode=&daddr=5002+Center+St.+Omaha,+Ne+68106'>Directions</a>");
		});
		return marker;
	}


	var point = new GLatLng(41.243046,-95.990285);
	map.addOverlay(createMarker(point));

}