I'm completely new to javascript, and am only fumbling with it now as I simply want to pull data from an XML file to display in Google applet thing - straightforward stuff I thought considering JS is renown for its DOM handling.
I've successfully pulled in my XML file as a DOM object, I just don't know what to do with it from here

- I've attempted DOM walking 'things' to put content into variables, but I've not got it to work, hence I thought i'd try to view the structure of what I was trying to walk.
XML doc format is:
<?xml version="1.0" encoding="UTF-8"?>
<get_stats generator="zend" version="1.0">
<url_id>1</url_id><url>http://www.yahoo.com</url>
<total_visits>2</total_visits>
<last_visit>2007-09-17 17:42:54</last_visit>
<status>Success</status>
</get_stats>
That is litterally it. Only one item returned, no duplication of any node.
Any suggestions appreciated

Cheers,
DM