/*function OnLoad() {
	 
  if (google.loader.ClientLocation) {
	  $('post_location').value = google.loader.ClientLocation.address.city;
	  	
	  	new Ajax.Request(URL_BASE + '/location/google_locator/', {
			method: 'post',
			postBody: "retour=true&latitude="+google.loader.ClientLocation.latitude+"&longitude="+google.loader.ClientLocation.longitude+"&city="+google.loader.ClientLocation.address.city+"&country="+google.loader.ClientLocation.address.country+"&country_code="+google.loader.ClientLocation.address.country_code+"&region="+google.loader.ClientLocation.address.region
		});
		return false;
	   
  } 
  else {	 
  }
}
google.setOnLoadCallback(OnLoad);	*/
