    //<![CDATA[

	var map = null;

	function createMarker(point,html,icon)
	{
		var marker = new GMarker(point,icon);

		GEvent.addListener
		(
			marker, "click", function()
			{
				// marker.openInfoWindowHtml(html);
			}
		);
		return marker;
	}

	function load()
	{
		if (GBrowserIsCompatible())
		{
			map = new GMap2(document.getElementById("map"));
			// map.addControl(new GLargeMapControl()); //grosser kontrollbalken
			map.addControl(new GSmallMapControl());
			map.addControl(new GOverviewMapControl());
			map.addControl(new GMapTypeControl());
			// map.addControl(new GOverviewMapControl());
			// map.addOverlay('test');
			// map.setCenter(new GLatLng(37.4419, -122.1419), 13);
			// geocoder = new GClientGeocoder();
		}
	}

	function showAddress()
	{
		map.setCenter(new GLatLng(51.29164,6.785688), 14);

		var marker = createMarker(new GLatLng(51.29164,6.785688),'<span style="font-family: Arial; font-size:11px; font-weight: bold; color:#A12525; line-height:12px;">Station Airport</span> &nbsp;<a href="javascript:window.print()">')

		map.addOverlay(marker);
		marker.openInfoWindowHtml('<span style="font-family: Arial; font-size:11px; font-weight: bold; color:#A12525; line-height:12px;">Station Airport </span><br /><span style="font-family: Arial; font-size:10px;">Ahrensplatz 7<br />40474 Düsseldorf<br />Tel  + 49 (0)211 42 17 15 02<br />Fax + 49 (0)211 16 98 43 71  <br /><a href="mailto:PrekerA@duesseldorfcongress.de">PrekerA@duesseldorfcongress.de</a></span><br />&nbsp;');
	}
    //]]>
