function mapa_ampliar() {
	document.getElementById("mapa").style.top="90px";
	document.getElementById("mapa").style.left="50%";
	document.getElementById("mapa").style.height="386px";
	document.getElementById("mapa").style.width="638px";
	document.getElementById("mapa").style.marginLeft="-319px";
	document.getElementById("mapa").innerHTML="<div style='z-index:990010;position:absolute;top:0px;left:0px;'><img src='img/plano_grande.jpg' /></div><div style='position:absolute;right:30px;top:10px;z-index:990020;'><a href='javascript:mapa_cerrar()'><img src='img/cerrar.gif'></a></div><div style='position:absolute;right:30px;top:480px;z-index:990020;'><a href=\"javascript:mapa_imprimir();\" title=\"Imprimir\"><img src='img/imprimir.png'></a></div>";
	document.getElementById("mapa").style.visibility="visible";
}
function mapa_cerrar() {
	document.getElementById("mapa").style.top="0px";
	document.getElementById("mapa").style.left="0px";
	document.getElementById("mapa").style.height="1px";
	document.getElementById("mapa").style.width="1px";
	document.getElementById("mapa").style.marginLeft="0px";
	document.getElementById("mapa").style.visibility="hidden";
}

function mapa_imprimir()
{
	window.open("plano.html","plano","")
}

function ok() {
	var ok=true;
	if (ok && document.formulario.nombre.value=="") {
		alert("Debe especificar un nombre.");
		document.formulario.nombre.focus();
		ok=false;
	}
	if (ok && document.formulario.telefono.value=="") {
		alert("Debe especificar un telefono.");
		document.formulario.telefono.focus();
		ok=false;
	}
	if (ok && document.formulario.email.value=="") {
		alert("Debe especificar un e-mail.");
		document.formulario.email.focus();
		ok=false;
	}

	if (ok && !checkmail(document.formulario.email.value)) {
		alert("Por favor, introduzca una dirección de correo válida.");
		document.formulario.email.focus();
		ok=false;
	}

	if (ok && document.formulario.condiciones.checked==false) {
		alert("Debe aceptar las condiciones legales.");
		document.formulario.condiciones.focus();
		ok=false;
	}

	return ok;
}

function checkmail(value)
{
	var email = value;
	var filter  = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
	if (filter.test(email))
	{
		return true;
	}
	else
	{
		return false;
	}
}