
function showAddress(address) {
var geocoder = new GClientGeocoder();
var map = new GMap2(document.getElementById("map_canvas"));
if (GBrowserIsCompatible()) {
geocoder.getLatLng(
address,
function(point) {
if (!point) {
} else {
map.setCenter(point, 14);
map.setMapType(G_SATELLITE_MAP);
map.enableRotation();
map.setUIToDefault();
map.enableRotation();
marker.openInfoWindowHtml(address);
}
}
);
}
}

