﻿// JScript File

function Search()
{
  var searchString = document.getElementById("searchText");
  //try to get the textBox content and sent to the search page
  if (typeof(searchString) != "undefined") 
  {
    window.location.href = '/Search.aspx?search=' + searchString.value;        
    return true;
  }
  return false;  
} 