
    var map = null;
    var geocoder = null;

    function load() {
      if (GBrowserIsCompatible()) {
        map = new GMap2(document.getElementById("map"));
        map.setCenter(new GLatLng(41.302549,-94.435445), 12);
        geocoder = new GClientGeocoder();
		showAddress("2389 Hwy 92 Greenfield, IA 50849");
		map.addControl(new GSmallMapControl());

      }
    }

    function showAddress(address) {
      if (geocoder) {
        geocoder.getLatLng(
          address,
          function(point) {
            if (!point) {
              alert(address + " not found");
            } else {
              map.setCenter(point, 15);
              var marker = new GMarker(point);
              map.addOverlay(marker);
              marker.openInfoWindowHtml("Farmers Electric Cooperative<br>"+address);
            }
          }
        );
      }
    }
