<!--
function formCheck()
		{
													// CONTROLLO SE I CAMPI SONO VUOTI
		 if (document.ourForm.email.value=="")
		 	{if (document.ourForm.MAIL2.value=="")
			{alert("Please insert your e-mail address in both fields...");document.ourForm.email.focus();return false;}
		else {alert("Please insert your e-mail address in the upper field...");document.ourForm.email.focus();return false;}
		}
		else {if (document.ourForm.MAIL2.value==""){alert("Please insert your e-mail address in the lower field...");document.ourForm.MAIL2.focus();return false;}
		}
// CONTROLLO SE INDIRIZZO VALIDO

if (document.ourForm.email.value!=document.ourForm.MAIL2.value){alert("Please check your e-mail address!");document.ourForm.email.focus();return false;}
	else {if (document.ourForm.email.value.indexOf("@")==-1 || 
			document.ourForm.email.value.indexOf(".")==-1 || 
			document.ourForm.email.value.indexOf(" ")!=-1 || 
			document.ourForm.email.value.indexOf(";")!=-1 || 
			document.ourForm.email.value.indexOf(",")!=-1 || 
			document.ourForm.email.value.indexOf(":")!=-1)
	{alert("Sorry, your e-mail address seems to be not a valid one...");document.ourForm.email.focus();return false;}
else {document.ourForm.submit();}
}
}
// -->
