// JavaScript Document
function AfficheGB(chp){
document.getElementById(chp).style.display="block";
document.getElementById('TxtFrancais').style.display="none";
}

function AfficheFR(chp){
document.getElementById(chp).style.display="";
document.getElementById('TxtAnglais').style.display="none";
}