function affiche_div($id) {
	document.getElementById($id).style.display = "block";
	return false;
}

function cache_div($id) {
	document.getElementById($id).style.display = "none";
	return false;
}

function confirmDelete() {
	retour = confirm('Etes vous sûr de vouloir effacer cette entrée ?');
	return retour;
}