function checkSubmit()
	{
		var nome 			= document.contatti.nome.value;
		//var cognome 		= document.contatti.cognome.value;
		var email 			= document.contatti.email.value;
		var email_reg_exp 	= /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;
		if ((nome == "") || (nome == "undefined"))
			{
				alert('Field NAME is empty.');
				document.contatti.nome.focus();
			}
/*		else if ((cognome == "") || (cognome == "undefined"))
			{
				alert('Il campo COGNOME non è stato compilato');
				document.contatti.cognome.focus();
			}*/
		else if ((email == "") || (email == "undefined"))
			{
				alert('Field EMAIL is empty.');
				document.contatti.email.focus();
			}
		else if (email != "" && !email_reg_exp.test(email)) 
			{
				alert('Field EMAIL is not correct.');
				email = "";
				document.contatti.email.focus();
			}
		else
			{
				document.contatti.action = "modules/ContactUs/form.php";
				document.contatti.submit();
			}
	}
