function showAddress(address, id) {
  if (GBrowserIsCompatible()) {
    var map = new GMap2(document.getElementById(id));
    map.disableInfoWindow();
    map.addControl(new GSmallZoomControl());
    var geocoder = new GClientGeocoder();
    geocoder.getLatLng(
      address,
      function(point) {
        if (!point) {
          alert(address + " not found");
        } else {
          map.setCenter(point, 11);
          var marker = new GMarker(point);
          map.addOverlay(marker);
        }
      }
    );
  }
}
