function load() {
    if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.addControl(new GLargeMapControl());
        map.setCenter(new GLatLng(45.260932,-92.974312), 15);
	    map.addOverlay(new GMarker(new GLatLng(45.260932,-92.974312)));
	
		/*var geocoder = new GClientGeocoder();

		function showAddress(address) {
		  geocoder.getLatLng(
		    address,
		    function(point) {
		      if (!point) {
		        alert(address + " not found");
		      } else {
		        map.setCenter(point, 13);
		        var marker = new GMarker(point);
		        map.addOverlay(marker);
		        //marker.openInfoWindowHtml(address);
		      }
		    }
		  );
		}
		
		showAddress("807 Highway 97, Forest Lake, MN 55025");*/
    }
}