Xml in flash reading problem

im new at this im starting to learn i manage to learn from the tutorial called [COLOR=black]Displaying[FONT=Verdana] XML Data in Flash but theres some data from the xml that the flash doesnt want to read thsi is the xml http://www.teamwarfare.com/xml/viewteam_v2.asp?team=Assassin+Tactical+Operations the line that i want to display are the ones like ladder name, rank, win, losses, forfeits, match, status of each ladder the only lines that i have been able to display are the team information like name, email, status and founder.i dont know what to do to make those other lines to show this is the code im using [/FONT][/COLOR]

function loadXML(loaded) { 
if (loaded) { 
_root.team = this.firstChild.childNodes[0].childNodes[0].firstChild.nodeValue; 
_root.email = this.firstChild.childNodes[0].childNodes[2].firstChild.nodeValue; 
_root.stat = this.firstChild.childNodes[0].childNodes[4].firstChild.nodeValue;
name_txt.text = _root.team; 
comment_txt.text = _root.email; 
status_txt.text = _root.stat;
} else { 
  trace("file not loaded!"); 
} 
} 
xmlData = new XML(); 
xmlData.ignoreWhite = true; 
xmlData.onLoad = loadXML; 
xmlData.load("<A href="http://www.teamwarfare.com/xml/viewteam_v2.asp?team=Assassin+Tactical+Operations");[/code" target=_blank>http://www.teamwarfare.com/xml/viewteam_v2.asp?team=Assassin+Tactical+Operations");

im trying to change this lines


_root.team = this.firstChild.childNodes[1].childNodes[0].firstChild.nodeValue; 
_root.email = this.firstChild.childNodes[1].childNodes[1].firstChild.nodeValue; 
_root.stat = this.firstChild.childNodes[1].childNodes[2].firstChild.nodeValue;

to make it show the line that i want but i dont know y it doesn work if some one can help me it will be apreciated thx.