var offsetleft=6
var offsettop=150

// Pasamos los caracteres de las variables a minusculas para poder trabajar mejor 
var agt=navigator.userAgent.toLowerCase()
var netscape = (agt.indexOf("mozilla")!=-1) && (agt.indexOf("msie")==-1);
var iexplorer = (agt.indexOf("msie")!=-1);
var opera = (agt.indexOf('opera')!=-1);
var windows = ((agt.indexOf("win")!=-1) || (agt.indexOf("16bit")!=-1));
var mac = (agt.indexOf("mac")!=-1);
var unix = !windows && !mac;
var verent = parseInt(navigator.appVersion);
var verdec = parseFloat(navigator.appVersion)-verent;
if (netscape && (verent==5)) verent = 6;
if (iexplorer && (verent = 4))
   if (agt.indexOf(".01")!=-1) verdec = .01;
if (!netscape && !iexplorer && !opera)
   alert('Navegador no identificado. No puede ser utilizado para ver esta pagina.');

// Reactualiza pantalla cuando cambia de tamano en netscape 4
if (netscape && verent==4) {
   var initWidth, initHeight;
   initWidth = window.innerWidth;
   initHeight = window.innerHeight;
   window.captureEvents(Event.RESIZE);
   window.onresize = handleResize;
}

function selec(orden)
{
if (orden == 1){
if (netscape && verent==4){
    document["seleccion"].visibility="show";}
else
if (netscape && verent==6){
    document.getElementById("seleccion").style.visibility="visible";}
else{
    document.all["seleccion"].style.visibility="visible";}
}
if (orden == 0){
if (netscape && verent==4){
    document["seleccion"].visibility="hidden";}
else
if (netscape && verent==6){
    document.getElementById("seleccion").style.visibility="hidden";}
else{
    document.all["seleccion"].style.visibility="hidden";}
}
}
