var nc = (document.layers) ? true:false
 var ie = (document.all) ? true:false
 var n6 = (document.getElementById) ? true:false
 
 function muestracapa(id)
 {
   if(ie)
   {
     document.all[id].style.visibility="visible";
   }
 }
 


 function borracapa(id)
 {
   if(ie)
   {
     document.all[id].style.visibility="hidden";
   }
 }




 function escribe(nombre,valor)
 {
   if (nombre=="tipo")
   {
     if (ie || n6)
       document.forms.oculto.tipo.value=valor;
     else
       document.principal.document.fondo.document.forms.oculto.tipo.value=valor;
   }
    if (nombre=="anyos")
   {
     if (ie || n6)
       document.forms.oculto.anyos.value=valor;
     else
       document.principal.document.fondo.document.forms.oculto.anyos.value=valor;
   }
   if (nombre=="nombre")
   {
     if (ie || n6)
       document.forms.oculto.nombre.value=valor;
     else
       document.principal.document.fondo.document.forms.oculto.nombre.value=valor;
   }
 }
 
 function envia()
 {
   if (ie || n6)
   {
     var uno=document.forms.oculto.tipo.value;
     var dos=document.forms.oculto.anyos.value;
     var tres=document.forms.oculto.nombre.value;
   }
   else
   {
    var uno=document.principal.document.fondo.document.oculto.tipo.value;
    var dos=document.principal.document.fondo.document.oculto.anyos.value;
    var tres=document.principal.document.fondo.document.oculto.nombre.value;
   }
   alert('ha introducido los siguientes datos:\n'+uno+'\n'+dos+'\n'+tres);
 }
 
 function borra()
 {
   if(ie || n6)
   {
//     document.forms.autenticar.reset();
   }
   else
   {
//     document.principal.document.fondo.document.informatica.document.informaticafondo.document.forms.formInformatica.reset();
   }
 } 

