	if (GBrowserIsCompatible()) {

			// resize the map
			var m = document.getElementById("map");
			m.style.height = "300px";
			m.style.width = "300px";
			var map = new GMap(m);

			var map = new GMap2(document.getElementById("map"));
			map.addControl(new GSmallZoomControl());
			map.addControl(new GMapTypeControl());

			map.setCenter(new GLatLng(newLat, newLng), newZmm);

			//enable smooth zooming
			map.enableContinuousZoom();
			map.enableDoubleClickZoom();

			// Insert the constituency overlay
			var insert1 = new EInsert(new GLatLng(newLat, newLng), "/common/images/maps/" + newOly + ".png", new GSize(newOlw,newOlh), newOlz);
			map.addOverlay(insert1);

		}

		else {
			alert("Sorry, the Google Maps API is not compatible with this browser");
	}

// This Javascript is based on code provided by the
// Blackpool Community Church Javascript Team
// http://www.commchurch.freeserve.co.uk/   
// http://www.econym.demon.co.uk/googlemaps/