﻿function EndRequestHandler(sender, args) {
    
    RefreshHSearch();
}
function initialize() {   //alert('hi');
    Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler);
    if(document.getElementById('textBoxSearch').value.length > 0)
    {
//        document.forms['Shopping'].elements['sstring'].value = document.forms['unbeatablesearch'].elements['query'].value  = 
//        document.forms['searchbox'].elements['qu'].value = document.forms['sf'].elements['keyword'].value =
//        document.forms['search'].elements['keyword'].value =  document.getElementById('textBoxSearch').value;


     //document.frames["IfrAmazon"].document.forms['search'].elements['keyword'].value = document.getElementById('textBoxSearch').value;
     
   }
}
function RefreshHSearch() {
   
    window.location.assign('Shopping.aspx?q=' + document.getElementById('textBoxSearch').value);   
}

function DisplayAds(top) {
     document.getElementById("DivFooter").style.top = top + 'px';
    document.getElementById('AdsenseTop').style.display = "";
    //document.getElementById('DivWidgetBucksAd').style.display = "";
    
}