mostrar=function(id){
 document.getElementById(id).style.visibility="visible";
};

ocultar=function(id){
 document.getElementById(id).style.visibility="hidden";
};

ocultarTodos=function(){
 document.getElementById("punto1").style.visibility="hidden";
 document.getElementById("punto2").style.visibility="hidden";
 document.getElementById("punto3").style.visibility="hidden";
 document.getElementById("punto4").style.visibility="hidden";
 document.getElementById("punto5").style.visibility="hidden";
 document.getElementById("punto6").style.visibility="hidden";
 document.getElementById("punto7").style.visibility="hidden";
 document.getElementById("punto8").style.visibility="hidden";
}
