function LoadMapSearchControl() {

      var options = {
            zoomControl : GSmapSearchControl.ZOOM_CONTROL_ENABLE_ALL,
            title : "Wooly Bully",
            url : "http://www.woolybullyshop.com",
            idleMapZoom : GSmapSearchControl.ACTIVE_MAP_ZOOM-3,
            activeMapZoom : GSmapSearchControl.ACTIVE_MAP_ZOOM-3
            }

      new GSmapSearchControl(
            document.getElementById("mapsearch"),
            "1223 East LaFayette Street Tallahassee Florida 32301",
            options
            );

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