function createMarker(point, message) {
	  var marker = new GMarker(point);
	  GEvent.addListener(marker, "click", function() {
	    marker.openInfoWindowHtml(message);
	  });
	  return marker;
	}

	// This is where the map will start and how zoomed in
	var setLat = 52.058467486267;
	var setLon = 1.148564815521;
	var setZoom = 6; // bigger is zoomed out, smaller is zoomed in
	var mapType = G_MAP_TYPE;
	
    var map2 = new GMap(document.getElementById("map2"));
    
    
	
 //   GEvent.addListener(map, "moveend", function() {
   //       var center = map.getCenter();
     //     document.getElementById("message").innerHTML = center.toString();
     //   });
    
    map2.addControl(new GSmallMapControl()); // added
    map2.addControl(new GMapTypeControl()); // added
    map2.centerAndZoom(new GPoint(setLon, setLat), setZoom);
	map2.setMapType(mapType);
    
    
	

	// this adds the points and the HTML when you click the point

		