function fOcultar(pDiv)
{
 var vNavegador = Navegador();
 
 if (vNavegador.substr(1,1) >= 6) document.getElementById(pDiv).style.visibility = 'hidden';
 else
 {
  if (vNavegador.substr(0,1) == "N") document.layers[pDiv].visibility = "hide";
  else document.all[pDiv].style.visibility="hidden";
 }
}


function fMostrar(pDiv)
{
 var vNavegador = Navegador();
 
 if (vNavegador.substr(1,1) >= 6) document.getElementById(pDiv).style.visibility = 'visible';
 else
 {
  if (vNavegador.substr(0,1) == "N") document.layers[pDiv].visibility = "show";
  else document.all[pDiv].style.visibility="visible";
 }
}


function fVolcar(pDiv,text)
{
 var vNavegador = Navegador();
 if (vNavegador.substr(1,1) >= 6) document.getElementById(pDiv).innerHTML = text;
 else
 {
  if (vNavegador.substr(0,1) == "N")
  {
   var lyr = document.layers[pDiv].document;
   lyr.open()
   lyr.write(text)
   lyr.close()
  }
  else document.all[pDiv].innerHTML = text
 }
}

