function Masquer(element){
var aff = document.getElementById("calendrier");
if (aff.style.display == "none"){
   aff.style.visibility='visible';
   aff.style.display='block';
}
else{
    aff.style.visibility='hidden';
    aff.style.display='none';
}