function CheckSearchForm()
{
    if(document.getElementById('Keyword').value.match(/.{3,64}/))
    {
        return true;
    }
    return false;
}
