function load() {
    if (GBrowserIsCompatible()) {
        document.getElementById('map').innerHTML = "";
        geocoder = new GClientGeocoder();
        map = new GMap2(document.getElementById('map'));
        map.addControl(new GSmallMapControl());
        geocoder.getLatLng(
              "1640 Main St. Philomath, Oregon 97370",
              function(point) {
                  if (!point) {
                      alert("Address could not be found");
                  } else {
                      map.setCenter(point, 9);
                  }
              }
            );
          }

    }
}
