var min=10;
var max=16;
function changerTaille(plus) {
	var zoneCentre = document.getElementById('centre');
	if(zoneCentre.style.fontSize) {
	   var taille = parseInt(zoneCentre.style.fontSize.replace("px",""));
	} else {
	   var taille = 12;
	}
	if(plus == 'plus')
	{
		if(taille!=max) {
	    	taille += 1;
		}
	}
	else
	{
		if(taille!=min) {
			taille -= 1;
		}	
	}
	var lh = taille+4;
	zoneCentre.style.fontSize = taille+"px";
	zoneCentre.style.lineHeight = lh+"px";
}
