﻿/// <reference path="jquery-1.2.6-vsdoc.js" />
$(function() {
    $("#btnSearch").click(function() {
        var key = $("#txtSearch").val();
        if ($.trim(key) == "") {
            return;
        }
        window.location.href = encodeURI('ResultList.aspx?key=' + key);
    });   
});


