﻿/// <reference path="../../Script/jquery-1.2.6.min-vsdoc.js" />

$(document).ready(function() {
    $('#txtSearch').keydown(function(e) {
        if (e.keyCode == 13) {
            Search();
            return false;
        }
    });
});

function Search() {
    var terms = $('#txtSearch').val();
    if (terms.length > 0) {
        window.open('search.aspx?q=' + terms, '_self', '');
    }
}