var timerID=null;

function StartOcultacion(){
    timerID = setTimeout("Esconder()",1000);
}
function ResetOcultacion(){
	  clearTimeout(timerID);
}
function CambiaColor(objeto,objColor){
  if ((document.all) || (!document.layers))
    objeto.style.color=objColor;
}
function Esconder(){		
      MM_showHideLayers('Layer1','','hide');
}
function posicionaLayer(){
   document.getElementById('Layer1').style.top=(document.body.clientHeight/2)-123;
   document.getElementById('Layer1').style.left=(document.body.clientWidth/2);
}
function posicionaLayer2(){
   document.getElementById('Layer1').style.top=110;
   document.getElementById('Layer1').style.left=(document.body.clientWidth/2);
}
