var gdir;
var map;

function load() {
	if (GBrowserIsCompatible()) {
		map = new GMap2(document.getElementById("map"));
		map.setMapType(G_PHYSICAL_MAP); gdir = new GDirections(map, document.getElementById("directions"));
		var center = new GLatLng(42.14866161385229 , -5.094432234764099);
		map.setCenter(center, 15);
		map.addControl(new GLargeMapControl());
		map.addControl(new GMapTypeControl());
		map.addMapType(G_PHYSICAL_MAP);
		var marker = new GMarker(center, {draggable: false});
		map.addOverlay(marker);
	}
}
		
function setDirections(fromAddress, toAddress) {
	gdir.load("from: " + fromAddress + " to: " + toAddress,{ "locale": "es"});
}

function setDirectionsEn(fromAddress, toAddress) {
	gdir.load("from: " + fromAddress + " to: " + toAddress,{ "locale": "en"});
}