    //<![CDATA[
    
    var map = null;
    var map1 = null;
    var map2 = null;
    var geocoder = new GClientGeocoder();

    function load(lvl1,lvl2,address) {
      if (GBrowserIsCompatible()) {
        map1 = new GMap2(document.getElementById("map1"));
        map2 = new GMap2(document.getElementById("map2"));
        map1.setCenter(new GLatLng(37.4419, -122.1419), lvl1);
        map2.setCenter(new GLatLng(37.4419, -122.1419), lvl2);
      }
      showAddress1(address,lvl1);
      showAddress2(address,lvl2);
    }

    function loaddouble(lvl1,lvl2,address,address2) {
      if (GBrowserIsCompatible()) {
        map1 = new GMap2(document.getElementById("map1"));
        map2 = new GMap2(document.getElementById("map2"));
        map1.setCenter(new GLatLng(37.4419, -122.1419), lvl1);
        map2.setCenter(new GLatLng(37.4419, -122.1419), lvl2);
      }
      showAddress1(address,lvl1);
      showAddress2(address2,lvl2);
    }

    function showAddress1(address,lvl) {
      if (geocoder) {
        geocoder.getLatLng(
          address,
          function(point) {
            if (!point) {
              alert(address + " not found");
            } else {
              map1.setCenter(point, lvl);
              var marker = new GMarker(point);
              map1.addOverlay(marker);
              map1.addControl(new GSmallMapControl());
            }
          }
        );
      }
    }
    
    function showAddress2(address,lvl) {
      if (geocoder) {
        geocoder.getLatLng(
          address,
          function(point) {
            if (!point) {
              alert(address + " not found");
            } else {
              map2.setCenter(point, lvl);
              var marker = new GMarker(point);
              map2.addOverlay(marker);
              map2.addControl(new GSmallMapControl());
            }
          }
        );
      }
    }
    
    //]]>