// JavaScript Document

function montrer(id) {
	document.getElementById(id).style.visibility = "visible";
}
function cacher(id) {
	document.getElementById(id).style.visibility = "hidden";
}