    function showAddress(address, x) {
      if (geocoder) {
        geocoder.getLatLng(
          address,
          function(point) {
            if (point) {
              map.setCenter(point, 10);
              marker = new GMarker(point);
              map.addOverlay(marker);
 
	  		  GEvent.addListener(marker, "click", openInfoWin(x));
            }
          }
        );
      }
    }
 
	function openInfoWin(a)	{
		  marker.openInfoWindowHtml(a);
	}
	
	function aj(t) {
		var obj;
		obj = document.getElementById ('tab_map');
		obj.className = "";
		obj = document.getElementById ('tab_foto');
		obj.className = "";
		obj = document.getElementById ('tab_vertel');
		obj.className = "";
		obj = document.getElementById ('tab_meld_misbruik');
		obj.className = "";
		switch (t) {
			case 'map':
			case 'vertel':
			case 'foto':
			case 'meld_misbruik':
				obj = document.getElementById ('tab_'+t);
				obj.className = "active";
				do_load_page (document.location, t);
				return false;
				break;
			default:
				return true;
		}
	}
 
	function setBigPic (obj) {
		s = new String(obj.src);
		s = s.replace("_t_", "_f_");
		var x = document.getElementById('bigpic');
		x.src = s;
		return false;
	}


