/* Fonction permettant d'incr?menter la police des colonnes centrale et droite du site web
Article Standard*/
var conteneur ="";
function increment (id) {
	var police;
	var police_int;
	var value =10; 	
	police = document.getElementById(id).style.fontSize;

	if(!police) {
		police_int =100 + value;
	}
	else {
		police_int= parseInt(police.replace("%",""));
		police_int += value;
	}
		document.getElementById(id).style.fontSize = police_int + "%";	
}


/* Fonction permettant de d?cr?menter la police des colonnes centrale et droite du site web*/
function decrement (id) {
	var police;
	var police_int;
	var value =10; 
	
	police = document.getElementById(id).style.fontSize;

	if(!police) {
		police_int =100 - value;
	}
	else {
		police_int= parseInt(police.replace("%",""));
		police_int -= value;
	}
		document.getElementById(id).style.fontSize = police_int + "%";	
}

