
function load(){
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("map"));
		var geocoder = new GClientGeocoder();
		function showAddress(address,name) {
			geocoder.getLatLng(
				address,
				function(point) {
					if (!point) {
						alert(address + " not found");
					}else {
						map.setCenter(point, 15);
						var marker = new GMarker(point);
						map.addOverlay(marker);
						//opener(name,marker);
						//GEvent.addListener( marker, 'click', makeOpenerCaller(address,marker) );
		      		}
		    	}
			);
		}
		function makeOpenerCaller(address,marker) { return function() { opener(address,marker); }; }
		function opener(address,marker) { 
			marker.openInfoWindowHtml(address); 
		}
		showAddress('Steinhauserstrasse 151, 42399 Wuppertal','Obrycki Designerboden GmbH');
		
	}
}