function checkkeyword(){
        var key = $('#cat_Search').val();
        if(key==''||key=='Enter Exam Code'){
            alert('Please input your searching content!');
            return false;
        }else{
            window.location.href='/search.php?sort='+key;
        }
    }