function manageAdDif(){
  if(document.getElementById('formE')){
    var fo = document.getElementById('formE');
    if(fo.adDif.checked){
      var dis=false
      var col="#ffffff";
    }else{
      var dis=true
      var col="#cccccc";
    }
    
    //on s'occupe du disable et du style
    fo.org_l.disabled=dis
    fo.org_l.style.backgroundColor=col;
    fo.ad1_l.disabled=dis
    fo.ad1_l.style.backgroundColor=col;
    fo.ad2_l.disabled=dis
    fo.ad2_l.style.backgroundColor=col;
    fo.cp_l.disabled=dis
    fo.cp_l.style.backgroundColor=col;
    fo.ville_l.disabled=dis
    fo.ville_l.style.backgroundColor=col;
    fo.pays_l.disabled=dis
    fo.pays_l.style.backgroundColor=col;
  }
}

