function cleanEmailInput3() {
	input = document.getElementById("emailInput3");
	input.value = "";
}

function emailCheck3() {	
	input = document.getElementById("emailInput3");
	if(input !== null) {
		var email = input.value;
		input.value = email.toLowerCase();
		var emailCheck = /(^([a-z0-9]+(([\.\-\_]?[a-z0-9]+)+)?)\@(([a-z0-9]+[\.\-\_])+[a-z]{2,4})$)/;
		if (emailCheck.test(email)) {
			testresult = true;
		} else {
			alert("Attention, votre adresse email ne semble pas valide\n\nElle doit être de la forme prenom.nom@FAI.com,\nsans espaces ni caractères accentués");
			input.focus();
			return false;
		}
	}
}

function hideNewsletterSubscriptionBoxShow() {
	document.getElementById('NewsletterSubscriptionBoxShow').style.display = 'none';
}