
function getDirections(from,to) {
	
	if (to == "") {
		alert("Please enter a departure address!");
		return;
	}
	
	directionsPanel = document.getElementById("TravelDirections");
	directions = new GDirections(map,directionsPanel);
	directions.load(to + " to " + from);
}