// JavaScript Document


function mostrar(id){
	if (document.getElementById(id).style.visibility!="visible"){
		document.getElementById(id).style.visibility = "visible";
		document.getElementById(id).style.height = "85px";
	}
	else{
		document.getElementById(id).style.visibility = "hidden";
		document.getElementById(id).style.height = "0px";
		}
	
}

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