function c(theForm) { 
if (theForm.nome.value == "") { alert("Inserisci il tuo Nome."); theForm.nome.focus(); return (false); }
if (theForm.cognome.value == "") { alert("Inserisci il tuo Cognome."); theForm.cognome.focus(); return (false); } 
if (theForm.email.value.indexOf('@', 0) == -1) { alert("Inserisci il tuo indirizzo E-mail corretto."); theForm.email.focus(); return (false); } 
if (theForm.email.value.indexOf('.', 0) == -1) { alert("Inserisci il tuo indirizzo E-mail corretto."); theForm.email.focus(); return (false); }
if (theForm.telefono.value == "") { alert("Inserisci il tuo Telefono."); theForm.telefono.focus(); return (false); } 
}
