// JavaScript Document	
	var t;			
	t = 1;
	function changerTaille(modif) {
		t = t + modif;
		//document.getElementsByTagName("body")[0].style.fontSize = t + "em";		
		document.getElementById("MAIN_Content").style.fontSize = t + "em";		
	} 	
