function desplegar (id) {
	if (document.getElementById(id).style.visibility=="visible") {
		document.getElementById(id).style.visibility="hidden";
		document.getElementById(id).style.height="1px";
	} else {
		document.getElementById(id).style.visibility="visible";
		document.getElementById(id).style.height="auto";
	}
}

function abrirmasinformacion (id) {
	if (document.getElementById(id).style.visibility=="visible") {
		document.getElementById(id).style.visibility="hidden";
	} else {
		document.getElementById(id).style.visibility="visible";
	}
}

function abrirmapaampliado() {
	document.getElementById("mapaampliado").style.top="90px";
	document.getElementById("mapaampliado").style.left="50%";
	document.getElementById("mapaampliado").style.height="386px";
	document.getElementById("mapaampliado").style.width="638px";
	document.getElementById("mapaampliado").style.marginLeft="-319px";

	document.getElementById("mapaampliado").innerHTML="<div style='z-index:990010;position:absolute;top:0px;left:0px;'><img src='../img/mapa.gif' /></div><div style='position:absolute;right:10px;top:10px;z-index:990020;'><a href='javascript:cerrarmapaampliado()'><img src='../img/aspa.gif'></a></div><div style='position:absolute;right:10px;bottom:10px;z-index:990020;'><a href=\"javascript:imprimir();\" title=\"Imprimir\"><img src='../img/impresora.png'></a></div>";

	document.getElementById("mapaampliado").style.visibility="visible";
}
function cerrarmapaampliado() {
	document.getElementById("mapaampliado").style.top="0px";
	document.getElementById("mapaampliado").style.left="0px";
	document.getElementById("mapaampliado").style.height="1px";
	document.getElementById("mapaampliado").style.width="1px";
	document.getElementById("mapaampliado").style.marginLeft="0px";

	document.getElementById("mapaampliado").style.visibility="hidden";
}

function imprimir()
{
	window.open("../include/imprimirmapa.php","imprimirmapa","")
}