	function LoadMapSearchControl() {

		var options = {
			zoomControl : GSmapSearchControl.ZOOM_CONTROL_ENABLE_ALL,
			title : "Insurance Center, Inc.",
			url : "http://www.insctr.com",
			idleMapZoom : GSmapSearchControl.ACTIVE_MAP_ZOOM,
			activeMapZoom : GSmapSearchControl.ACTIVE_MAP_ZOOM,
			onBootComplete : function() { 
			   this.onCenterClick();
			   this.onIdleCenterClick();
            }

		}

		new GSmapSearchControl(
			document.getElementById("mapsearch"),
			"2207 Hidden Valley Drive, Suite #203, Little Rock, AR, 72212-4163",
			options
		);

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