    //<![CDATA[
	var _map;
	var _directions;
    function load() {
	var description='<p><strong>Amber Springs Hotel</strong>,<br> Wexford Road, Gorey, Co. Wexford</p>'+
					'<p><strong>Tel</strong>: 053 9484000<br>'+
					'<strong>Email</strong>: <a href="mailto:info@ambersprings.ie">info@ambersprings.ie</a></p>';
	var lat=52.669974;
	var lng=-6.292258;
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
		this._map=map;
	    var directionsPanel = document.getElementById("route");
		var directions = new GDirections(map, directionsPanel);
	    this._directions=directions;
		map.addControl(new GSmallMapControl());
		//map.addControl(new GMapTypeControl());
        map.setCenter(new GLatLng(lat,lng ), 15);
		addPoint(map);
      }
	  function addPoint(map) {
	  	var point = new GLatLng(lat, lng);
		var street=new GMarker(point);
  		map.addOverlay(street);
		GEvent.addListener(street, "click", function() {
			map.openInfoWindow(point, description);
		});
		map.openInfoWindow(point, description);
	  }
	  }
	function showDirections(from, to) {
		_directions.load(from + " to " + to);
	}
	function goBack() {
		_directions.clear();
		load();
	}
	

    //]]>