function _HelpEMail(){

	var blnValid = true;

	var check1 = document.getElementById("emailhelp");

	if(!check1.value || check1.value.length > 50)
	{

 		alert("Il campo e-mail è vuoto o e-mail troppo lunga");

	}
	else
	{

		document.forms.formHelpMail.action = "register/dbhelpmail.asp";
		document.forms.formHelpMail.submit();

	}	
}
