function intercambiarOrigen(){
	var origen=document.getElementById('Origen');
	var destino=document.getElementById('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://www.florentino-robledillo.com/ComoLlegar/GoogleMaps.php?idioma="+googledomain+"&origen="+escape(origen)+"&destino="+escape(destino);
//var web=""+maparuta;
//document.write(maparuta);
top.location=maparuta;
}
return false;	
}