codice:
var xml = new XML();
xml.ignoreWhite = true;
....
xml.onLoad = function()
{
	....
	var Testo, Link, window;
	Link = this.firstChild.childNodes[0].childNodes[0].firstChild.nodeValue;
	Testo = this.firstChild.childNodes[0].childNodes[1].firstChild.nodeValue;
	window = "<a href=\"" + Link + "\" target=\"_blank\">" + Testo + "</a>";
};
xml.load("Xml/News.xml");