You should not use a
backslash (
\) as in a file path, but a normal slash (
/) as in URLs.
Also, for more interaction with nodes, you may want to use this.
jscript code:
var node = xml.selectSingleNode("/gameslist/game[@name=\"" + game + "\"]/" + node);
var value = node.text;
In this example, you can give the game attributes (like <Tag> <Subtag
value="Hello world!" /> </Tag>)