// JavaScript Document
function montre(id){
		document.getElementById(id).style.display="block";
}

function cache(id){
		document.getElementById(id).style.display="none";
}
