
function Cache(DIV){
//alert("Cache");
document.getElementById(DIV).style.display='none'
}
function Affiche(DIV){
//alert("Affiche");
document.getElementById(DIV).style.display='block'
}

