function controllaCF(Codice)
{
Codice=Codice.toUpperCase();
var re = /^[A-Z]{6}\d{2}[A-Z]\d{2}[A-Z]\d{3}[A-Z]$/;
return re.test(Codice);
}