//gets a map centered on Denver to Fort Collins routes//
   

    function setmap() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_canvas"));
		map.addControl(new GSmallMapControl());
        map.setCenter(new GLatLng(40.208246, -104.883728), 9);
      }
    }


