function cacher(id) {

	window.document.getElementById(id).style.display = "none";

	}

function montrer(id) {

	window.document.getElementById(id).style.display = "block";

	}
