function showLoc(adres)
{
			
			
	   new Ajax.Request(BASEURL+"ajax/locatie.php",
	   	  {	   	  		
	   	  	
			   postBody : "adres="+adres,
	           onComplete : function(t)
	           {
	           //alert(t.responseText);
	          // location.reload(true);

		           locatie = t.responseText.split(',');
		           x = locatie[0];
				   y = locatie[1];
				   z = locatie[2];
				  /* 

				   var map = new GMap2(document.getElementById("map"));

				   map.setCenter(new GLatLng(x, y), 13);
				   map.openInfoWindowHtml(map.getCenter(),"<h1  style='color:black;font-size:10px;margin-top:10px;width:auto;'>"+adres+"</h1>");
				*/
				var zoomIt = z;
								var latlng = new google.maps.LatLng(x, y);


							   var myOptions = {
						      	zoom: zoomIt,
						      	center: latlng,
								disableDefaultUI: true,
								mapTypeId: google.maps.MapTypeId.TERRAIN
						    };
								//console.log(zoomIt);
								map.setZoom(12);
								map.setCenter(latlng);
	           }
	       }
	   );
}
