// JavaScript Document
function checkFormNewsletter()
	{
	   	var error_msg = "";
			if (document.formo.nome.value == "" ||  document.formo.nome.value == "nome")
  				error_msg += "\t - Nome\n";
			if (document.formo.cognome.value == "" ||  document.formo.cognome.value == "cognome")
  				error_msg += "\t - Cognome\n";
			if (document.formo.email.value == "" ||  document.formo.email.value == "email")
  				error_msg += "\t - E-Mail\n";
			if (document.formo.consenso.checked != 1 )
  				error_msg += "\t - Informativa sulla privacy\n";
			if (error_msg!="")
				alert("Completare le seguenti informazioni:\n"+error_msg);
			else
			{
				document.formo.submit();
			}
}
function checkFormNewsletterEng()
	{
	   	var error_msg = "";
			if (document.formo.nome.value == "" ||  document.formo.nome.value == "name")
  				error_msg += "\t - Name\n";
			if (document.formo.cognome.value == "" ||  document.formo.cognome.value == "surname")
  				error_msg += "\t - Surname\n";
			if (document.formo.email.value == "" ||  document.formo.email.value == "email")
  				error_msg += "\t - E-Mail\n";
			if (error_msg!="")
				alert("Check the following field(s):\n"+error_msg);
			else
			{
				document.formo.submit();
			}
}

function checkFormCommento()
	{
	   	var error_msg = "";
			if (document.formo2.nome2.value == "")
  				error_msg += "\t - Nome\n";
			if (document.formo2.cognome2.value == "" )
  				error_msg += "\t - Cognome\n";
			if (document.formo2.email2.value == "" )
  				error_msg += "\t - E-Mail\n";
			if (document.formo2.commento2.value == "" )
  				error_msg += "\t - Commento\n";
			if (document.formo2.consenso2.checked != 1 )
  				error_msg += "\t - Informativa sulla privacy\n";
			if (error_msg!="")
				alert("Completare le seguenti informazioni:\n"+error_msg);
			else
			{
				document.formo2.submit();
			}
}
