// Que no te encierren en frames
if (parent.frames.length > 0) parent.location.href = self.document.location

// Google Maps
function intercambiarOrigen()
{
	var origen=document.getElementById('formmapa-origen');
	var destino=document.getElementById('formmapa-destino');
	var aux_value="";
	aux_value=origen.value;
	origen.value=destino.value;
	destino.value=aux_value;
}

function verCalculoRuta(origen,destino,mensaje,googledomain)
{
if (origen == '') 
	document.getElementById('info_ruta').innerHTML=mensaje;
else { 
var maparuta="http://maps.google."+googledomain+"/maps?f=d&saddr="+escape(origen)+"&daddr="+escape(destino);
top.location=maparuta;
}
return false;	
}
