function suggest(inputString) {
    if (inputString.length < 2) {
        $('#suggestions').fadeOut()
    } else {
        $('#htr_search').addClass('load');
        $.post("/htr_suggest.php", {
            queryString: "" + inputString + ""
        }, function (data) {
            if (data.length > 0) {
                $('#suggestions').fadeIn();
                $('#suggestionsList').html(data);
                $('#htr_search').removeClass('load')
            } else {
                $('#suggestions').fadeOut()
            }
        })
    }
}
function fill(thisValue) {
    $('#htr_search').val(thisValue);
    setTimeout("$('#suggestions').fadeOut();", 600)
}
function fillpopup(data) {
    var mypop
}
function showhtrpopup(id) {
    document.getElementById(id).style.visibility = 'visible'
}
function hidehtrpopup(id) {
    document.getElementById(id).style.visibility = 'hidden'
}
function toggle_htr_details(me) {
    $('.htrpopup').fadeOut();
    $('#' + me).show()
}
function addspace() {}
function removespace() {}
$(document).ready(function () {});
