F5-calling XML nodes

Hi!
I am kind of new with XML so I’m still not very confident with it.
I’m trying to retrieve information from an XML that is being sent to flash from an ASP.

My problem is that I am not sure of how the XML hierarchy works in flash.

The XML sent to flash is something like this:
<Login><Message>Login Correct</Message><Handle>Myname</Handle></Login>

I have an XML object in flash that stores that XML being loaded (myXML)

I need to know how to pull that Handle nodeValue (Myname).

This variable stores the Message nodeValue (Login Correct):

var login = myXML.firstChild.firstChild.firstChild.nodeValue

so the variable login stores the info correctly. I just can’t get another variable to store the other nodeValue:

myXML.firstChild.firstChild.firstChild.nextSibling.nodeValue???

thank you!