var map;

function ShowTheMap() {
	if (GBrowserIsCompatible()) {
		map = new GMap2(document.getElementById("map"));
		map.addControl(new GSmallMapControl());
		map.setCenter(new GLatLng(52.1665, -106.6467), 14);

		var html = '<img src="images/building_spring.jpg" alt="Building View" width="340" height="164" /><legend>Recreation Supply Co.</legend>'
		
		// Creates a marker at the given point
		var marker = new GMarker(new GLatLng(52.1661, -106.6467));
		GEvent.addListener(marker, "click", function() {
			marker.openInfoWindowHtml(html,{maxWidth:340});
		});
		map.addOverlay(marker);
		marker.openInfoWindowHtml(html,{maxWidth:340});
	}
}