function aff(id){
  if(document.getElementById("depli"+id)){
    document.getElementById("depli"+id).style.display="inline";
    document.getElementById("btnDepli"+id).innerHTML='<img src="typo3conf/ext/in_malle/img/btnMoins.gif" width="15" height="16" border="0" alt="Cacher" \/>';
    
  }
}

function hid(id){
  if(document.getElementById("depli"+id)){
    document.getElementById("depli"+id).style.display="none";
    document.getElementById("btnDepli"+id).innerHTML='<img src="typo3conf/ext/in_malle/img/btnPlus.gif" width="15" height="16" border="0" alt="Afficher" \/>';
  }
}

function manageAff(id){
  if(document.getElementById("depli"+id)){
    if(document.getElementById("depli"+id).style.display!="inline")
      aff(id);
    else
      hid(id);
  }
}
