function makemap() {
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("map"));
		var point = new GLatLng(34.3004, -83.8335); // The location's latitude and longitude
		map.setCenter(new GLatLng(34.301614, -83.83284), 16); // Lat. and Long. map will be centered onto
		map.addControl(new GSmallMapControl());
		map.addOverlay(createMarker(point, "<strong>Junior League of Gainesville - Hall County</strong><br />615 Oak St #F1500<br />Gainesville,GA 30501"));
	}
}

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