/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
function addAgendaDate(ele, id) {

	var o = new ajax();
	o.setParam('url', '/_ajax/membres.ajax.php');
	o.setParam('method', 'post');
	o.setParam('format', 'txt');

	o.setData('do', 'add');
	o.setData('add', 'agenda');
	o.setData('value', ele.value);
	o.setData('id', id);

	res = o.execute();
}
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
function toggleInscription(id) {

	var img = document.getElementById('img_checkbox_' + id);
	img.src = '/_img/icons/indicator.gif';

	var o = new ajax();
	o.setParam('url', '/_ajax/membres.ajax.php');
	o.setParam('method', 'post');
	o.setParam('format', 'txt');
	o.setParam('async', true);
	o.setParam('callback', 'toggleCheckboxImage');
	o.setParam('arg', id);

	o.setData('do', 'add');
	o.setData('add', 'agenda');
	o.setData('id', id);

	o.execute();
}
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
function toggleCheckboxImage(result, id) {

	var img = document.getElementById('img_checkbox_' + id);
	img.src = '/_img/icons/indicator.gif';

	switch(result) {
		case 'del' :
			img.src = '/_img/icons/not-checked.gif';
		break;
		case 'add' :
			img.src = '/_img/icons/checked.gif';
		break;
	}
}
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
