﻿// JScript File
function btnSearch_onclick()
{
    var txtQuery = document.getElementById("txtQuery");
    window.location.href="/Search/Default.aspx?Query=" + escape(txtQuery.value);
}

