function LoadMapSearchControl() {

      var options = {
            zoomControl : GSmapSearchControl.ZOOM_CONTROL_ENABLE_ALL,
            title : "HBAL",
            url : "http://www.hbal.com",
            idleMapZoom : GSmapSearchControl.ACTIVE_MAP_ZOOM-3,
            activeMapZoom : GSmapSearchControl.ACTIVE_MAP_ZOOM-3
            }

      new GSmapSearchControl(
            document.getElementById("mapsearch"),
            "1000 North Hurstbourne Parkway Louisville, KY 40223",
            options
            );

    }
    // arrange for this function to be called during body.onload
    // event processing
    GSearch.setOnLoadCallback(LoadMapSearchControl);
