    var address = '46-056 Kamehameha Highway, Kaneohe, Hawaii, 96744';
    var faddress = '<strong>New Hope Windward</strong><br /><br /><br />46-056 Kamehameha Highway<br />Kaneohe, Hawaii 96744';
 
    var map;
    var gdir;
    var geocoder = null;

    function initialize() {
      if (GBrowserIsCompatible()) {
        map = new GMap2(document.getElementById("map_canvas"));
        gdir = new GDirections(map, document.getElementById("directions"));
        geocoder = new GClientGeocoder();
        map.addControl(new GSmallMapControl());
        
       geocoder.getLatLng(
          address,
          function(point) {
              map.setCenter(point, 13);
              var marker = new GMarker(point);
              map.addOverlay(marker);
              marker.bindInfoWindow(faddress);
          }
        );
      }
    }
    
    function setDirections(fromAddress) {
      gdir.load("from: " + fromAddress + ", HI to: " + address);
    }