﻿function affiche(id) {
	document.getElementById(id).style.display = 'inline';
}
function cache(id) {
	document.getElementById(id).style.display = 'none';
}

