var clicked=true;

//Function that flips the image and expands the table  

function ExpandCollapse(bExpand, titre){
    clicked = bExpand
    if(clicked){
    clicked=false;
    document.getElementById(titre).style.display = 'block';
    }else{
    clicked=true;
    document.getElementById(titre).style.display = 'none';
    }
}

