<!--
	function Init(){
	
    var windowHeight = self.innerHeight?self.innerHeight:document.body.clientHeight;
    var windowWidth = self.innerWidth?self.innerWidth:document.body.clientWidth
  isIE=document.all;
isNN=!document.all&&document.getElementById;
isN4=document.layers;
isHot=false;
//alert ("This is a Javascript A");
topDog=isIE ? "BODY" : "HTML";
  whichDog=isIE ? document.all.theLayer : document.getElementById("theLayer");  

//hotDog=isIE ? event.srcElement : e.target;  
  var LayerWidth = whichDog.offsetWidth;
   var LayerHeight = whichDog.offsetHeight;
 //  alert ("This is a Javascript A22");
 if (isIE||isNN) {
  whichDog.style.left=((windowWidth)/2- LayerWidth/2)-17;
  whichDog.style.top=((windowHeight)/2-LayerHeight/2)-17;
 }
 else if  (isN4) {
	  	document.theLayer.left=((windowWidth)/2- LayerWidth/2)-17;
document.theLayer.top=((windowHeight)/2-LayerHeight/2)-17;
}
  return false;  
 }
 
 function hideMe(){
  if (isIE||isNN) {
    whichDog.style.visibility="hidden";
    }
  else if (isN4){
    document.theLayer.visibility="hide";
    }
}
//-->