
    //<![CDATA[


    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.setCenter(new GLatLng(39.81213, -105.167171), 14);
		
		map.addControl(new GSmallMapControl());
		
		var icon = new GIcon();
		icon.image = "http://labs.google.com/ridefinder/images/mm_20_red.png";
		icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
		icon.iconSize = new GSize(12, 20);
		icon.shadowSize = new GSize(22, 20);
		icon.iconAnchor = new GPoint(6, 20);
		icon.infoWindowAnchor = new GPoint(5, 1);
		
		 var point = new GLatLng(39.81213,-105.167171);
  		 map.addOverlay(new GMarker(point));
	
		map.openInfoWindowHtml(point,"<img src='../images/logo_map.gif' style='padding-bottom:3px;'/><p>6390 Joyce Drive Suite 200 West<br/>Golden, CO 80403<br/><br/>Get Directions: <a target='_blank'  href='http://maps.google.com/maps?f=q&hl=en&q=6390+Joyce+Drive,+golden+co&sll=37.0625,-95.677068&sspn=31.564064,82.265625&layer=&ie=UTF8&z=16&ll=39.813629,-105.166154&spn=0.007466,0.020084&om=1&iwloc=addr'>From Google Maps</a></p>");


      }
    }
	

    //]]>
