Numbers and text from xml into flash

Hi
I have generated randomly, 128 unique numbers from (1 to 128) into 128 dynamic text boxes on stage with this code below Each dynamic box is named myTextField1, myTextField2 etc.


var nums:Array = new Array();
for (var i:Number = 1; i <= 129; i++) {
    nums.push(i);
}
nums.sort(shuffle);
for (i = 1; i <= 129; i++) {
    var temp:TextField = _root["myTextField" + i];
    temp.text = nums*;
}

function shuffle():Number {
    return Math.floor(Math.random() * 3 - 1);
}

These numbers represent a team name which I have listed with there own number in a xml file called teams.xml

 
<teams>
<team><name>Accrington Stanley</name><number>1</number></team>
<team><name>Aldershot Town</name><number>2</number></team>
<team><name>Altrincham</name><number>3</number></team>
<team><name>Arsenal</name><number>4</number></team>
etc etc
</teams>

I would like to show these teams has they are drawn, into a text area, text box or anything that will represent the team from the drawn numbers.ie,
Drawn numbers 2, 4, 3, 1 show Aldershot v Arsenal then below Altrincham v Accrington Stanley and so on…
Basically I am trying to create a 128 team draw giving me 64 games, I will hopefully then am able to repeat the draw with 64 teams, then 32 teams until we are down to two.
I have tried various ways of achieving this using an xml connector but I cannot get it to work?

Any help appreciated
Bern. Flash CS3 AS2.0