//<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
	  
        function createMarker(point,html) {
        var marker = new GMarker(point);
        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(html);
        });
        return marker;
      }

        var map = new GMap2(document.getElementById("map"));
		map.addControl(new GSmallMapControl());
		map.addControl(new GMapTypeControl());
        map.setCenter(new GLatLng(42.902231,-78.890459), 13);

        var point = new GLatLng(42.902231,-78.890459);
		var marker = createMarker(point,'<div style="font: 12px Arial;"><a href="http://www.dyc.edu/" style="font-weight: bold;">D&rsquo;Youville College</a><br />320 Porter Ave<br />Buffalo, NY 14201<br />(800) 877-3921</div>')
		map.addOverlay(marker);
		
      }
    // display a warning if the browser was not compatible
    else {
      alert("Sorry, the Google Maps API is not compatible with this browser");
	}	  
    }

    //]]>s