function MostraryOcultar(Seccion){ 
	if(Seccion.style.display=="none"){Seccion.style.display=""}
	else{Seccion.style.display="none"}
}
