function VerificaCampi(NomeForm, ListaCampi) {		if (NomeForm.Invoice_state.value == "Italy" && NomeForm.Invoice_CF.value == "") {		alert("*The codice fiscale field is mandatory for italian participants.");			 NomeForm.Invoice_CF.focus();			 return false;	}			var CampiOb;	   // crea il vettore dei campi da controllare          CampiOb = ListaCampi.split(":");          // se uno dei campi e' vuoto visualizza l'errore          // e torna falso          for (i=0; i < CampiOb.length; i++) {                    if (NomeForm[CampiOb[i]].value == "" ||                    	(NomeForm[CampiOb[i]].name == "agree_1" &&                    	NomeForm[CampiOb[i]].value == "no") ||                    	(NomeForm[CampiOb[i]].name == "agree_2" &&                    	NomeForm[CampiOb[i]].value == "no") &&                        NomeForm[CampiOb[i]].type != "submit" &&                        NomeForm[CampiOb[i]].type != "reset" &&                        NomeForm[CampiOb[i]].type != "button" &&                        NomeForm[CampiOb[i]].type != "hidden") {                        alert("*Remember to fill the required fields and agree to the privacy statement.");			 NomeForm[CampiOb[i]].focus();	                 return false;                    }          }          // i campi richiesti sono ok!          return true;}