function doSearch()
{
  var strq = document.Form1.txtQuery.value
  if (strq.length > 0)
    document.location.href = path+"search.aspx?st=1&qt="+strq;
  else
    alert("Please specify your query.");
}