function vai(){if(!document.Registrazione.R1.checked){alert("Per la legge sulla privacy è necessario approvare i documenti relativi per proseguire.")
return;}
if(document.Registrazione.nome.value=="")
{alert("Attenzione: specificare il vostro nome.")
document.Registrazione.nome.focus();return;}
if(document.Registrazione.referente.value=="")
{alert("Attenzione: specificare il vostro referente.")
document.Registrazione.referente.focus();return;}
if(document.Registrazione.telefono.value=="")
{alert("Attenzione: specificare il vostro indirizzo telefono.")
document.Registrazione.telefono.focus();return;}
if(document.Registrazione.utente.value.length<5)
{alert("Attenzione: il campo utente deve avere almeno 5 caratteri")
document.Registrazione.utente.focus();return;}
if(document.Registrazione.pwd1.value.length>0)
{if(document.Registrazione.pwd1.value.length<5)
{alert("Attenzione: la password deve avere almeno 5 caratteri")
document.Registrazione.pwd1.focus();return;}
if(document.Registrazione.pwd1.value.length!=document.Registrazione.pwd2.value.length)
{alert("Attenzione: password non corrispondente")
document.Registrazione.pwd1.focus();return;}}
document.Registrazione.submit();}