// Script Source: CodeLifter.com
// Copyright 2003
// Do not remove this header

/*<![CDATA[*/

isIE=(navigator.appName== "Microsoft Internet Explorer") ? 1 : 0;
isNN=(navigator.appName == "Netscape") ? 1 : 0;
isN4=0;
isHot=false;

function ddInit(e){
  topDog=isIE ? "BODY" : "HTML";
  whichDog=isIE ? document.all.theLayer : document.getElementById("theLayer");  
  hotDog=isIE ? window.event.srcElement : e.target; 
// alert("whichDog = " + whichDog);

 }

function hideMe(){
  if (isIE||isNN) whichDog.style.visibility="hidden";
  else if (isN4) document.theLayer.visibility="hide";
}

function showMe(){
  if (isIE||isNN) whichDog.style.visibility="visible";
  else if (isN4) document.theLayer.visibility="show";
}

document.onmousedown=ddInit;
document.onmouseup=Function("ddEnabled=false");


/*]]>*/
