
function apagar() {
    document.getElementById('cuadro2').style.display="none";
    document.getElementById('cuadro3').style.display="none";
    document.getElementById('cuadro4').style.display="none";
    document.getElementById('cuadro5').style.display="none";
    document.getElementById('cuadro6').style.display="none";
}

function encender(seleccion) {
    var primero     =   1;
    var ultimo      =   6;
    var anterior    =   seleccion -1;
    
    if(seleccion==primero) {
        document.getElementById('menu_previo').style.backgroundImage= "url('images/borde_menu_izq.gif')";
    } else {
        document.getElementById('menu_previo').style.backgroundImage= "url('images/borde_menu_izq_a.gif')";
    }
    
    for(cont=1;cont<=6;cont++) {
        var elementos = eval("document.getElementById('cuadro"+cont+"')");
        var menu        =   eval("document.getElementById('menu"+cont+"')");
        if(seleccion == cont){
            if(cont==ultimo) {
                menu.style.backgroundImage="url(images/menu_activo_a.gif)";
            } else {
                menu.style.backgroundImage="url(images/menu_activo.gif)";    
            }
            elementos.style.display="";
        } else {
            if(cont==anterior) {
                menu.style.backgroundImage="url(images/menu_inactivo_a.gif)";
            }
            else if(cont==ultimo){
                menu.style.backgroundImage="url(images/menu_inactivo_b.gif)";
            } else {
                 menu.style.backgroundImage="url(images/menu_inactivo.gif)";
            }
            elementos.style.display="none";
            
        }
    }
    
}


/*-------------------------------------------------------------*/
/* FUNCION QUE ABRE UNA VENTANA POPUP CON TODOS LOS PARAMETROS */
/*-------------------------------------------------------------*/
function AbreVentana(url, x, y, h, w, sb, loc) {
	MiVentana = window.open (url,'MiVentana','location='+loc+', scrollbars='+sb+',left='+x+',top='+y+',height='+h+',width='+w);
	MiVentana.resizeTo(w+10,h+60);
	MiVentana.focus();
}

/*---------------------------------------------*/
/* FUNCION QUE ABRE UNA VENTANA POPUP ESTANDAR */
/*---------------------------------------------*/
function vNormal(url,sbars,location) {
	H=635;
	W=990;
	X=screen.width;
	X=(X/2) - 500;
	Y=screen.height;
	Y=(Y / 2) - 375;
	AbreVentana(url, X, Y, H, W, sbars, location);
	MiVentana.focus();
}