// JavaScript Document
function sub() {
    if (document.getElementById('keyword').value != '') {
        window.location.href = '/search.aspx?keyword=' + document.getElementById('keyword').value;
    }
}
