function initialize() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_canvas"));
        map.setCenter(new GLatLng(54.04675, -2.797603), 15);
        map.addControl(new GLargeMapControl());
        map.addControl(new GOverviewMapControl());          
	createMarker(54.04675, -2.797603, "<b>Ashton Hall, Lancaster</b><br>Nearest postcode: LA1 1PJ<br> Coordinates 54.04675&deg; N, -2.797603&deg; E", map, true);

}}