function enviar_formulario_informacion() {
	if (document.formulario.Nombre.value.length==0){
		alert("Debe cumplimentar los campos obligatorios");
		document.formulario.Nombre.focus();
		return;
	}
	if (document.formulario.Email.value.length==0){
		alert("Debe cumplimentar los campos obligatorios");
		document.formulario.Email.focus();
		return;
	}
	if ( (document.formulario.Email.value.indexOf ('@', 0) == -1) || (document.formulario.Email.value.length < 5) ) { 
    alert("Escriba una dirección de correo válida en el campo \"E-mail\".");
		document.formulario.Email.focus();
		document.formulario.Email.select();
  	return;
	}
	document.formulario.submit();
}

function mostrar_sucursal (id_sucursal) {
	if (document.getElementById || document.all || document.layers) {
		var tag_to_hide = eval('document.getElementById("' + id_sucursal + '").style');
	}
	
	if (tag_to_hide.display == "none")
		tag_to_hide.display="block"
	else
		tag_to_hide.display="none"
}

function ver_mapa(ida,idd,ancho) {
  document.getElementById("ifrm_gmaps").src="http://www.grupolt.com/gmap.php?ida=" + ida + "&idd=" + idd + "&width=" + ancho;
}

function redim() {
  //Redimensiona un iframe pasando su id como parametro y la anchura/altura
  parent.document.getElementById('reservas_online').style.height=800;
  parent.document.getElementById('reservas_online').style.width=700;
  var miIframe=document.getElementById('frame_inicio');
  miIframe.style.height=800;
  miIframe.style.width=700;
}