// MUESTRA U OCULTA
function display(obj,id1,id2,id3,id4,id5,id6,id7) {
if (id1) { document.getElementById(id1).style.display = 'block'; }
if (id2) { document.getElementById(id2).style.display = 'none'; }
if (id3) { document.getElementById(id3).focus(); }
if (id4) { document.getElementById(id4).style.display = 'block'; }
if (id5) { document.getElementById(id5).style.display = 'none'; }
if (id6) { document.getElementById(id6).style.display = 'block'; }
if (id7) { document.getElementById(id7).style.display = 'none'; }
}

// Cargar pagina desde formulario
function gotoSite(obj)
{
var s;
s=obj.options[obj.selectedIndex].value
if (s!="") {
window.top.location.href=s;
}
}
// Popdv
function popupFunction(obj,idop) { 
document.getElementById(idop).style.display='block';
}
function popupcFunction(obj,idcl) { 
document.getElementById(idcl).style.display='none';
}
