function showAddress(address, title){
    $("#googleMapDialog").dialog({
        title: 'Google Map: ' + title,
        width: 600,
        height: 500,
        modal: true,
        close: function(event, ui) {
            $("#googleMapDialog").dialog('destroy');
        }
    });	
	
    var map = new GMap2(document.getElementById("googleMap"));
    var geocoder = new GClientGeocoder();
    map.addControl(new GSmallMapControl());
    map.addControl(new GMapTypeControl());
    
    geocoder.getLatLng(address, function(point){
        if (!point) {
            alert(address + " nicht gefunden!");
        }
        else {
            map.setCenter(point, 13);
            var marker = new GMarker(point);
            map.addOverlay(marker);
            marker.openInfoWindowHtml("<b>Adresse:</b><br>" + address);
        }
    });
}
