//HTML Layer to display while Loading is in progress
function displayToolTip(){
    showItSimple("divToolTip");
  	var window_width=document.body.clientWidth;
	var window_height=document.body.clientHeight;
	//var scroll_top=window_height/2-60+document.body.scrollTop;
	var scroll_top=document.body.scrollTop+20;

  	document.getElementById("divToolTip").style.visibility="visible";
  	document.getElementById("divToolTip").style.top=scroll_top+"px";
  	document.getElementById("divToolTip").style.left=window_width/2+"px";
  	document.getElementById("divToolTip").style.zIndex=5000;
}
function hideToolTip(){
  window.setTimeout("hideToolTipNow()",100);
}
function hideToolTipNow(){
  document.getElementById("divToolTip").style.visibility="hidden";
}
