﻿// calls search function

function dosearch()
{
  var st=document.getElementById("searchtextbox")
  if (st.value == "")
  {
    document.location="/search.asp"
  }
  else
  {
    document.location="/search.asp?action=Go&freetext=on&SearchString1="+escape(st.value)
  }    
}