
function checkEmail(myForm) {
	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(myForm.email2.value)){
		return (true)
	}
	alert("L'adresse e-mail n'est pas valide !");
	return (false)
}

var t;			
t = 0.7;

function changerTaille(modif) {
	t = t + modif;
	t = Math.max(0.7, t);
	document.getElementsByTagName("body")[0].style.fontSize = t + "em";		
} 	
