In the ClassMailLogAnalyse Script library, search SortArray sub (the one that causes the error).
Than modify the loop indexes from
For j=0 To x <br/>
For i=0 To x <br/>
to
For j=0 To x -1<br/>
For i=0 To x -1<br/>
And let me know if it fixes the problem.
Renaud