/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function cambiarSelect(){
    document.getElementById('seleccionado').style.color = '#303e41';
}
function restaurarSelect(){
    document.getElementById('seleccionado').style.color = '#ffffff';
}

function abrirVentana(url,width,height){
    window.open(url,'','titlebars=0, toolbar=0,scrollbars=0,location=0,statusbar=0,'+
        'menubar=0,resizable=0,width='+width+',height='+height+','+
        'top='+ (window.screen.height/2-height/2) +','+
        'left='+ (window.screen.width/2-width/2) );
}

function abrepag(url) {
    var valores= "toolbar=no,location=no,directories=no,status=no,menubar=no, resizable=yes, fullscreen=yes";
    //Aqui se abre la nueva ventana: maximizada y sin barritas de ningun tipo:
    ventana= window.open(url,"",valores);
    //Le damos el focus a la nueva ventana:
    ventana.focus();
}

function irPag(url){
    window.location=url;
}

