/*CONTROLLO PER USCITA DIV LINGUE*/
function elencoLingue ()
{
    var divLang = document.getElementById('sceltaLingua').style.display;
    
    if (divLang == 'none') document.getElementById('sceltaLingua').style.display = 'block'; else document.getElementById('sceltaLingua').style.display = 'none';
}
/*FINE CONTROLLO PER USCITA DIV LINGUE*/
        
/*CONTROLLO EMAIL*/
function controllomail(mail){
	var espressione = /^[_a-z0-9+-]+(\.[_a-z0-9+-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)+$/;
	if (!espressione.test(mail))
        return '1';
    else
        return '0';
}
/*FINE CONTROLLO EMAIL*/

/*CONTROLLO PARTITA IVA*/
function controllaPIVA(pi)
{
    errore = 0;
    
    if( pi.length != 11 )
        errore++;

    validi = "0123456789";
    for( i = 0; i < 11; i++ ){
         if( validi.indexOf( pi.charAt(i) ) == -1 )
            errore++;
    }

    s = 0;
    for( i = 0; i <= 9; i += 2 )
         s += pi.charCodeAt(i) - '0'.charCodeAt(0);
    for( i = 1; i <= 9; i += 2 ){
         c = 2*( pi.charCodeAt(i) - '0'.charCodeAt(0) );
         if( c > 9 )  c = c - 9;
         s += c;
    }

    if( ( 10 - s%10 )%10 != pi.charCodeAt(10) - '0'.charCodeAt(0) )
        errore++;
    
    if (pi == '00000000000')
        errore++;
    
    return errore;
}
/*FINE CONTROLLO PARTITA IVA*/

