function showMap(address, divId, infoText) {
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById(divId));
		var geocoder = new GClientGeocoder();
		geocoder.getLatLng(address,
			function(point) {
		    	if (!point) {
		    		alert(address + " ist unbekannt.");
				} else {
					map.addControl(new GSmallMapControl());
					map.addControl(new GMapTypeControl());
					map.setCenter(point, 12);
					var marker = new GMarker(point, {title: infoText});
					map.addOverlay(marker);
					//GEvent.addListener(marker, "mouseover", function() {
	          		//	marker.openInfoWindowHtml(infoText);
	        		//});
		    	}
		});
	}
	return map;
 }
 	
