//Creates a series of non-breaking spaces for alignment purposes.
function spaceout(num)
{
	var spaces = "";
	for( i=0; i<num; i++)
	{
        	spaces = spaces + "&nbsp;";
	}
	document.write(spaces);
}
 function SortVBArray(arrVBArray) {
        return arrVBArray.toArray().sort().join('\b');
    }