// JavaScript Document

function ferme(div){
	var elt = document.getElementById(div);
	elt.style.display='none'; 

}