function presenta(){
    (document.getElementById("marco")).src="presenta.html";
}

function tutoriales(){
    (document.getElementById("marco")).src="tutoriales.html";
}

function mos(){
     (document.getElementById("marco")).src="mos.html";
}

function info(){
     (document.getElementById("marco")).src="info.html";
}

function demo(){
    (document.getElementById("marco")).src="demo.html";
}
          
function trabajo(){
    (document.getElementById("marco")).src="trabajo.html";
}

function contactar(){
    (document.getElementById("marco")).src="contactar.html";
}

function mostrar(nombreCapa){
    (document.getElementById(nombreCapa)).style.visibility="visible";
}

function ocultar(nombreCapa){
    (document.getElementById(nombreCapa)).style.visibility="hidden";
}

function abreVentana(nombreVentana){
    var pag=nombreVentana+'.html';
    window.open(pag,"nueva","toolbar=no,directories=no,menubar=no,width=530,height=800,resizable=no,scrollbars=yes,status=no");
}

function abreEnlace(enlace){
    window.open(enlace);
}

function privacidad(){
    window.open("privacidad.html","privacidad","toolbar=no,directories=no,menubar=no,width=420,height=550,resizable=no,scrollbars=no,status=no");
}

