ocularEtiquetas();

function ocularEtiquetas(){
    for (i=1; i<8; i++){
        document.getElementById("etiqueta"+i).style.display = "none";
    }
}

function verEtiqueta(nombre){
    if (document.getElementById(nombre).style.display == "block"){
        document.getElementById(nombre).style.display = "none";
    }else{
        document.getElementById(nombre).style.display = "block";
    }
}
