function initialize() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_canvas"));
		var point = new GLatLng(40.645462, -111.497621);
		var zoomlevel = 15;
		var marker = new GMarker(point);
		var myHtml = "<strong>Sundance House</strong> <br />at the Kimball Art Center <br />638 Park Avenue <br />Park City, Utah 84060";

/* 

Geocoder URL:

http://maps.google.com/maps/geo?q=638+Park+Avenue+Park+City,+UT+84060&output=csv&key=ABQIAAAAQfm4rRAEpWo6Gnhap0q-aRRTUFLbWYuX31TvUK6uD_sPkCpGGxT_cHy1VFOaBXx8pqGWYHmnt0cn2g

*/

		/* When a user clicks on the marker, open the info window. */
		GEvent.addListener(marker, "click", function() {
			map.openInfoWindowHtml(point, myHtml);
													 })	

		/* Set the center of the map to "point" and zoom to zoomlevel. */
		map.setCenter(point, zoomlevel);

		/* Open the info window speech bubble. */
		map.openInfoWindowHtml(map.getCenter(),	myHtml);

		/* Add a marker at the location of "point." */
		map.addOverlay(marker);

		/* Add the small map control and the map type control. */
		map.addControl(new GSmallMapControl());
		map.addControl(new GMapTypeControl());

      }
    }


