function lookup(inputString) {
	if(inputString.length == 0) {
        // Hide the suggestion box.
        
        //jQuery('#suggestions').hide();
        jQuery('#suggestions').css("display", "none");
    } else {
        jQuery.get("/accountmanager/ajaxPopulateManagerList", {title_typed: ""+inputString+""},
            function(data){
                if(data.length >0) {
                    jQuery('#suggestions').css("display", "block");
                    jQuery('#autoSuggestionsList').html(data);

                    //jQuery('#suggestions').show();
                    //jQuery('#autoSuggestionsList').html(data);
                }
            });
    }
} // lookup

function fill(thisValue) {
    jQuery('#inputString').val(thisValue);
    //jQuery('#suggestions').hide();
    jQuery('#suggestions').css("display", "none");
}