function cacher(elt){
if(elt.style.display=='none'){
elt.style.display='block';}
else{elt.style.display='none';}
return false;
}