    //<![CDATA[

   var map = null;
    var geocoder = null;

    function load() {
      if (GBrowserIsCompatible()) {
        map = new GMap2(document.getElementById("map"));
		map.addControl(new GLargeMapControl());
map.addControl(new GMapTypeControl());
infoHTML="<p class=\"smaller\"><img src=\"/images/front1googlemap.jpg\" style=\"float:left; margin-right: 5px;\" />Chesapeake College<br />Wye Mills, MD<br /><br /><a href=\"http://maps.google.com/maps?saddr=&daddr=Chesapeake+College,+Wye+Mills,+MD\">Get Directions</a></p>"
//map.setMapType(G_HYBRID_MAP);
mtype=map.getMapTypes(); 
        map.setCenter(new GLatLng(38.952, -76.0823), 12);
		map.openInfoWindow(map.getCenter(), infoHTML);
		//document.createTextNode("Chesapeake College ")
//\n <a href=\"http://maps.google.com/maps?saddr=&daddr=Chesapeake+College\">Get Directions</a>
//		map.setZoom(15);
        geocoder = new GClientGeocoder();
      	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, 12);
icon.shadowSize = new GSize(22, 20);
icon.iconAnchor = new GPoint(6, 20);
icon.infoWindowAnchor = new GPoint(4, 10);
var point = new GLatLng(38.952, -76.0823);
          map.addOverlay(new GMarker(point, icon));
	  }
    }

    function showAddress(address) {
      if (geocoder) {
        geocoder.getLatLng(
          address,
          function(point) {
            if (!point) {
              alert(address + " not found");
            } else {
              map.setCenter(point, 12);
              var marker = new GMarker(point);
              map.addOverlay(marker);
              marker.openInfoWindowHtml(address);
            }
          }
        );
      }
    }   
	
	 //]]>
