
function setFont(){
  document.getElementById("corps").style.fontSize = "11px";
}

function changeFontSize(inc){
  var tailleCourante_corps = document.getElementById("corps").style.fontSize;
  var tailleNouvelle_corps = parseInt(tailleCourante_corps.substring(0, tailleCourante_corps.indexOf("px")));
  tailleNouvelle_corps += inc;
  document.getElementById("corps").style.fontSize = tailleNouvelle_corps;
}
