	    var map = null;
	    var geocoder = null;
	
		function showAddress(address) {
			if (GBrowserIsCompatible()) {
				map = new GMap2(document.getElementById('map'));
				map.addControl(new GLargeMapControl());
				geocoder = new GClientGeocoder();
			
				if (geocoder) {
					geocoder.getLatLng(
						address,
						function(point) {
							if (!point) {
								alert(address + " is niet gevonden!");
							} else {
								map.setCenter(point, 15);

								// Ons eigen icoontje
								var icon = new GIcon();
								icon.image = "/images/mapsIcon.png";
								icon.iconSize = new GSize(35, 45);
								icon.shadowSize = new GSize(22, 20);
								icon.iconAnchor = new GPoint(14, 25);
								icon.infoWindowAnchor = new GPoint(0, 0);

								var marker = new GMarker(point, icon);
								map.addOverlay(marker);
							}
						}
					 );
				}
			}
		}

