    //Written by Léon Doornkamp
	function showAddress(address, focus, toernooi, url) {

	  if (geocoder) {
        geocoder.getLatLng(
          address,
          function(point) {
            
			if (!point) {
              //alert(address + " not found");
            } else {
            	   address = address + "<br>" + toernooi;
						if (focus){
						map.setCenter(point, 7);
						map.openInfoWindowHtml(point, address);
						}
						
					var marker = new GMarker(point);
					address += "<br><a href='" + url + "' title='" + url + "'>Ga naar toernooi</a>";
					marker.bindInfoWindowHtml(address);
					map.addOverlay(marker);
					
					//map.openInfoWindowHtml(point, address);
					
              				GEvent.addListener(map, 'click', function(marker,point){ 
 							 if (marker) { 
   							 map.setCenter(marker.getPoint()); 
   							 //map.openInfoWindowHtml(point, address);
 								 } }); 
            
            }
          }
        );
      }
    }