// JavaScript Document

var sPath = new String(window.location);
var sPage = sPath.indexOf('store_specials.html?'); 
if(sPage > 0) document.write('<div id="loading"><br><br>We are searching specials for you,Please wait...</div>');
// Created by: PP
function addLoadEvent(func) {
if(sPage > 0)	
{
	//alert(sPage);
    var oldonload = window.onload;
    if (typeof window.onload != 'function') {
      window.onload = func;
  }else {
      window.onload = function() {
    if (oldonload) {
        oldonload();
       }
       func();
      }
    }
  }
}

addLoadEvent(function() {
   document.getElementById("loading").style.display="none";
 });
