isIE=document.all;
isNN=!document.all&&document.getElementById;
isN4=document.layers;
isHot=false;

function showMe(){
  if (isIE||isNN) theLayer.style.visibility="visible";
  else if (isN4) document.theLayer.visibility="show";
}

document.onmousedown=ddInit;
document.onmouseup=Function("ddEnabled=false");


function hideMe(){
	hola()
 }

function delay(){
    setTimeout('afterFiveSeconds()',9000)
}

function afterFiveSeconds(){
hola();return false;
}

function hola(){
if (isIE||isNN) document.getElementById('theLayer').style.visibility="hidden";
else if (isN4) document.theLayer.visibility="hide";
}
