﻿function EndRequestHandler(sender, args) {
    
    RefreshHSearch();
}
function initialize() {   //alert('hi');
   try
   {
      Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler);        
   }
   catch(err)
   {
   
   
   }   
}
function RefreshHSearch()
{
    window.location.assign('HSearch.aspx?q=' + document.getElementById('textBoxSearch').value); 
}

function MoveHSFooter(val) {
   // document.getElementById("DivFooter").style.top = '100px';
  document.getElementById('AdsenseTop').style.display = "";
    if (navigator.appName != "Microsoft Internet Explorer") {
        document.getElementById("DivSearchResults").style.top = '332px';    
        document.getElementById("AdsenseTop").style.left = '1075px';    
    }
}
 