    //<![CDATA[
    var map = null;
    var geocoder = null;

    function load(address,comment) {
      if (GBrowserIsCompatible()) {
        map = new GMap2(document.getElementById("map"));
        map.addControl(new GSmallMapControl());
        map.addControl(new GMapTypeControl());
        geocoder = new GClientGeocoder();
//        map.setCenter(new GLatLng(55.1723, -118.7967), 13);
//        showAddress("10114 100 St, Grande Prairie, AB","<b>Team North</b>");
        showAddress(address,comment);
      }
    }

    function showAddress(address, comment) {
      if (geocoder) {
        geocoder.getLatLng(
          address,
          function(point) {
            if (!point) {
                document.getElementById("map").style.display="none";
            } else {
              map.setCenter(point, 13);
              var marker = new GMarker(point);
              map.addOverlay(marker);
              marker.openInfoWindowHtml("<b>"+comment+"</b>"+"<br \>"+address);
            }
          }
        );
      }
    }
    //]]>
