function clicR(date_id,date_url,point_res,type_res) {
	http.open("GET", racine+'ajax/clic_reservation.php?date_id=' + date_id + '&date_url='+date_url+'&point_res=' + point_res + '&type_res=' + type_res, true);
	http.onreadystatechange = clicReponse;
	http.send(null);
}
function clicReponse() {
	if (http.readyState == 4) {
		if (http.status == 200) {
			
		}
	}
}