var FONT_STATE = 0;


function fontBigger() {
	currFont = document.getElementById("contentZone").style.fontSize ? document.getElementById("contentZone").style.fontSize.replace("%", "") : "100"
	document.getElementById("contentZone").style.fontSize = (parseInt(currFont)+50)+"%";
}

function fontSmaller() {
	currFont = document.getElementById("contentZone").style.fontSize ? document.getElementById("contentZone").style.fontSize.replace("%", "") : "100"
	document.getElementById("contentZone").style.fontSize = (parseInt(currFont)-50)+"%";
}

function changeFontSize() {
	if(FONT_STATE == 0) {
		fontBigger();
		FONT_STATE = 1;
	} else if(FONT_STATE == 1) {
		fontSmaller();
		FONT_STATE = 0;
	}
}

function emailPage() {
	window.open("mailto:?body=Allez consulter le lien suivant : "+document.location, "_self");
}