	function LoadMapSearchControl() {
		
		var options = {
			zoomControl : GSmapSearchControl.ZOOM_CONTROL_ENABLE_ALL,
			title : "War Memorial Stadium",
			url : "http://www.wmstadium.com",
			idleMapZoom : GSmapSearchControl.ACTIVE_MAP_ZOOM,
			activeMapZoom : GSmapSearchControl.ACTIVE_MAP_ZOOM,
			onBootComplete : function() { 
			   this.onCenterClick();
			   this.onIdleCenterClick();
            }
		}

		new GSmapSearchControl(
			document.getElementById("mapsearch"),
			"1 Stadium Dr Little Rock, AR 72205-3697",
			options
		);

	}
	// arrange for this function to be called during body.onload
	// event processing
	GSearch.setOnLoadCallback(LoadMapSearchControl); 