function showLoc(adres)
{
	   new Ajax.Request("ajax/locatie.php",
	   	  {	   	  		
	   	  	
			   postBody : "adres="+adres,
	           onComplete : function(t)
	           {
	           
	          // location.reload(true);
		           locatie = t.responseText.split(',');
		           x = locatie[0];
				   y = locatie[1];
				   var map = new GMap2(document.getElementById("map"));
				   map.setCenter(new GLatLng(x, y), 15);
				   map.openInfoWindowHtml(map.getCenter(),"<h1  style='color:black;font-size:10px;margin-top:10px;width:auto;'>"+adres+"</h1>");
	           }
	       }
	   );
}
