function showAddress(map, geocoder, address, info, showinfo, zoom) {
  if (geocoder) {
    geocoder.getLatLng(
      address,
      function(point) {
        if (!point) {
          alert(address + " not found");
        } else {
          map.setCenter(point, zoom);
          var marker = new GMarker(point);
          map.addOverlay(marker);
          GEvent.addListener(marker, "click", function() {
            marker.openInfoWindowHtml(info);
          });
          if (showinfo) marker.openInfoWindowHtml(info);
        } // End If
      } // End function(point)
    ); // End geocoder.getLatLng
  } // End If
} // End Function
