// JavaScript Document

	function checkFormContatti(theForm)
	{
		if (theForm.action.value=="send")
		{
			if (theForm.NomeUtente.value=="")
			{
				alert("Inserire il nome e cognome");
				theForm.NomeUtente.focus();
				return false;
			}
			
			if (theForm.Email.value=="")
			{
				alert("Inserire l'email");
				theForm.Email.focus();
				return false;
			}

			if (!isEmailValid2(theForm.Email.value))
			{
				alert("Inserire l'indirizzo email in maniera corretta");
				return false;
			}

			if (theForm.RagioneSociale!= null)
			{
				if (theForm.RagioneSociale.value == '')
				{
					alert("Inserire la ragione sociale");
					theForm.RagioneSociale.focus();
					return false;
				}

			}
			if (!theForm.Privacy[0].checked)
			{
				alert("Occorre acconsentire al trattamento dei dati");
				return false;
			}
		}
		return true;
	}


