function cleanEmailInput() {
	input = document.getElementById("emailInput");
	input.value = "";
}

function emailCheck() {	
	input = document.getElementById("emailInput");
	if(input !== null) {
		var mail = input.value;
		input.value = mail.toLowerCase();
		var mailCheck = /(^([a-z0-9]+(([\.\-\_]?[a-z0-9]+)+)?)\@(([a-z0-9]+[\.\-\_])+[a-z]{2,4})$)/;
		if (mailCheck.test(mail)) {
			testresult = true;
		} else {
			alert("Attention, votre adresse mail 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';
}

function hidePopupBoxShow () {
	document.getElementById('PopupBox').style.display = 'none';
}

