codice:
function check_vendite()
{
var idx = document.lista.Time.selectedIndex;
var val =  "test|test|test"

var ArrVal = new Array();
ArrVal = val.split("|");

var pratiche = ArrVal(0);
var mese=ArrVal(1);
var anno=ArrVal(2);

alert(pratiche);

}
l'errore è:

Errore: ArrVal is not a function
riga: 12

:berto: