function montrer(id)
{
	var bloc = document.getElementById(id);
	bloc.style.display = 'inline';
}
function cacher(id)
{
	var bloc = document.getElementById(id);
	bloc.style.display = 'none';
}
