function NewWindow(pagina,ancho,alto,index) {
        indice=index;
        LeftPosition = (screen.width-ancho)/2;
        TopPosition = (screen.height-alto)/2;
        ventana=window.open(pagina,'window','toolbar=no,top='+TopPosition+',left='+LeftPosition+',directories=no,status=no,menub ar=no,scrollbar=no,width='+ancho+',height='+alto+'');
}
function CambiarColor(which)
{
        for (var i=0; i<document.links.length-1; i++)
        
                document.links[i].style.color="4F72A7";
                which.style.color="#ff9000";
                //#009999; es turquesa
        
}
function Inicio()
{
        
        document.links[1].style.color="#ff9000";
        
}
function silencio()
{
        document.all.sonido.src = "";
}
function reproducir()
{
        document.all.sonido.src = "Musica/akindofmagic.mp3";
}
function NewWindow2(pagina,ancho,alto,lnk) {
        LeftPosition = (screen.width-ancho)/2;
        TopPosition = (screen.height-alto)/2;
        ventana=window.open(pagina,'window','toolbar=no,top='+TopPosition+',left='+LeftPosition+',directories=no,status=no,menub ar=no,scrollbar=no,width='+ancho+',height='+alto+'');
        CambiarColor(lnk);
}
function maximizar2()
        {        
        resizeTo(screen.width, screen.height) 
            moveTo(0, 0);
}
function maximizar()
        {        
        window.moveTo(0,0);
        if (document.all)
                {
                top.window.resizeTo(screen.availWidth,screen.availHeight);
                }
        else if (document.layers||document.getElementById)
                {
                if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth)
                {
                top.window.outerHeight = screen.availHeight;
                top.window.outerWidth = screen.availWidth;
                }
                }
        }

