<!--
function form_Validator(FormData)
{

if (FormData.email.value == "")
{alert("Please fill in the E-MAIL");FormData.email.focus();return (false);}

if (FormData.email.value.length > 255)
{alert("Please fill in the - max. 255 caratteri");FormData.email.focus();return (false);}

var checkOK = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzĈ?0123456789-@.-_";
var checkStr = FormData.email.value;
var a = checkStr.indexOf('@');
var b = checkStr.lastIndexOf('.');
if (a >= b){alert("Please fill in the E-MAIL");FormData.email.focus();return (false);}
var allValid = true;
for (i = 0;  i < checkStr.length;  i++){ch = checkStr.charAt(i);for (j = 0;  j < checkOK.length;  j++)

if (ch == checkOK.charAt(j)) break;
if (j == checkOK.length){allValid = false;break;}}

if (!allValid)
{alert("Please fill in the E-MAIL");FormData.email.focus();return (false);}

if (FormData.nome.value == "")
{alert("Please fill in the NAME!");FormData.nome.focus();return (false);}

if (FormData.cognome.value == "")
{alert("Please fill in the SURNAME!");FormData.cognome.focus();return (false);}

if (FormData.nazionalita.value == "")
{alert("Please fill in the Nationality!");FormData.nazionalita.focus();return (false);}

if (FormData.eta.value == "")
{alert("Please fill in the Age!");FormData.eta.focus();return (false);}

if (FormData.indirizzo.value == "")
{alert("Please fill in the Current address!");FormData.indirizzo.focus();return (false);}

if (FormData.telefono.value == "")
{alert("Please fill in the HOME PHONE!");FormData.telefono.focus();return (false);}

if (FormData.dovevivi.value == "")
{alert("Please fill in where do you currently live in Rome!");FormData.dovevivi.focus();return (false);}

if (FormData.privacy2.checked == false)
{alert("Per spedire questa richiesta è necessario acconsentire al trattamento dei propri dati!");FormData.privacy2.focus();return (false);}

}



-->
