<!-- ISCRIZIONE -->
function Ok1(theForm) { 
if (theForm.nome.value == "") { alert("Per favore indica il tuo NOME"); theForm.nome.focus(); return (false); } 
if (theForm.cognome.value == "") { alert("Per favore indica il tuo COGNOME"); theForm.cognome.focus(); return (false); }
if (theForm.email.value.indexOf("@", 0) == -1) { alert("Indirizzo email non valido."); theForm.email.focus(); return (false); } 
if (theForm.email.value.indexOf(".", 0) == -1) { alert("Indirizzo email non valido."); theForm.email.focus(); return (false); }
if (theForm.telefono.value == "") { alert("Per favore indica il tuo TELEFONO"); theForm.telefono.focus(); return (false); }
	if (theForm.code_captcha.value == "") { alert("Attenzione. Scrivere il codice CAPTCHA"); theForm.code_captcha.focus(); return (false); } 
}

<!-- INFORMAZIONI -->
function Ok2(theForm) { 
if (theForm.nome.value == "") { alert("Per favore indica il tuo NOME"); theForm.nome.focus(); return (false); } 
if (theForm.cognome.value == "") { alert("Per favore indica il tuo COGNOME"); theForm.cognome.focus(); return (false); }
if (theForm.email.value.indexOf("@", 0) == -1) { alert("Indirizzo email non valido."); theForm.email.focus(); return (false); } 
if (theForm.email.value.indexOf(".", 0) == -1) { alert("Indirizzo email non valido."); theForm.email.focus(); return (false); }
if (theForm.telefono.value == "") { alert("Per favore indica il tuo TELEFONO"); theForm.telefono.focus(); return (false); }
	if (theForm.code_captcha.value == "") { alert("Attenzione. Scrivere il codice CAPTCHA"); theForm.code_captcha.focus(); return (false); } 
}

<!-- PUBBLICITA' -->
function Ok3(theForm) { 
if (theForm.azienda.value == "") { alert("Per favore indica il nome della tua AZIENDA"); theForm.azienda.focus(); return (false); } 
if (theForm.email.value.indexOf("@", 0) == -1) { alert("Indirizzo email non valido."); theForm.email.focus(); return (false); } 
if (theForm.email.value.indexOf(".", 0) == -1) { alert("Indirizzo email non valido."); theForm.email.focus(); return (false); }
if (theForm.telefono.value == "") { alert("Per favore indica il tuo TELEFONO"); theForm.telefono.focus(); return (false); }
	if (theForm.code_captcha.value == "") { alert("Attenzione. Scrivere il codice CAPTCHA"); theForm.code_captcha.focus(); return (false); } 
}
