function checkSearchForm(text, minCharCount, minCharCountMessage)
{
    if(text.length < minCharCount){
        window.alert(minCharCountMessage);
        return false;
    }
    return true;    
}

function focusQuickSearchInput()
{
    document.getElementById('texttofind').focus();
}


