function spedisci(){
var ok=true;

if(ok==true){
var vnome=document.forms[0].nome.value;
if(vnome.length<2){alert("Inserire il nome.");
document.forms[0].nome.focus();
ok=false;}}

if(ok==true){
var vragsoc=document.forms[0].ragsoc.value;
if(vragsoc.length<2){alert("Inserire il cognome o la ragione sociale.");
document.forms[0].ragsoc.focus();
ok=false;}}

if(ok==true){
var vtelefono=document.forms[0].telefono.value;
if(vtelefono.length<2){alert("Inserire il recapito telefonico.");
document.forms[0].telefono.focus();
ok=false;}}

if(ok==true){
var stringa=document.forms[0].email.value;
if(((stringa.length-stringa.lastIndexOf('.'))>6)||((stringa.length-stringa.lastIndexOf('.'))<3)||(stringa.indexOf('@')<0)||(stringa.indexOf('@')!=stringa.lastIndexOf('@'))||((stringa.lastIndexOf('.'))-(stringa.lastIndexOf('@'))<3)){alert("L'indirizzo di posta elettronica \nnon è valido. \nInserire un indirizzo valido!");
document.forms[0].email.focus();
ok=false;}}

if(ok==true){
var vaccetta=document.forms[0].accetto;
if(vaccetta.checked==false){alert("Per poter inviare il form è necessario consentire il trattamento dei dati ai sensi del D.Lgs. 196/03.");
vaccetta.focus();
ok=false;}}

if(ok)document.forms[0].submit();
}