	function showMix(map,address, text, zoom)
	{
		var div = document.getElementById(map);
		var geocoder = new GClientGeocoder();
		var map = new GMap2(div);
		map.addControl(new GLargeMapControl());
		geocoder.getLatLng(address,
			function(point)
			{
				if (!point)
				{
					div.style.visibility = 'hidden';
					alert(address + " nicht gefunden");
				}
				else
				{
					map.setCenter(point, zoom);
					//map.setUIToDefault();
					
/*
                    var mixIcon = new GIcon(G_DEFAULT_ICON);
                    mixIcon.image = "http://gmaps-samples.googlecode.com/svn/trunk/markers/blue/blank.png";
                    //maxIcon.iconAnchor = new GPoint(9, 34);
		            markerOptions = { icon:mixIcon };         
		            map.addOverlay(new GMarker(point, markerOptions));
*/		
        			var marker = new GMarker(point);

					GEvent.addListener(marker, "mouseover", function()
					{
						marker.openInfoWindowHtml(text);
					});
					GEvent.addListener(marker, "mouseout", function()
					{
						map.disableInfoWindow();
						map.enableInfoWindow();
					});
					map.addOverlay(marker);
					marker.openInfoWindowHtml(text);
					window.setTimeout(function()
					{
						map.disableInfoWindow();
						map.enableInfoWindow();
					}, 4000);
				}
			}
		);
		div.style.visibility = 'visible';
	}