﻿
$(function() {
    $("#btnSearch").click(function() {
        var value = $.trim($("#tbSearch").val());
        if (value == '') {
            alert("Please fill in the search keywords!");
            return;
        }
        location.href = "../../Search.html?keyword=" + value;
    });
});
