Loading "PHP-generated" XML

Hello,

I’m trying to load my php-generated xml. The xml2.php file generates the XML, and echoes it:

http://www.f-manija.domenas.net/awards/xml2.php

And I have this flash code:

var my_xml = new XML();
my_xml.ignoreWhite = true;
my_xml.onLoad = function(success) {

if (success) {

    bullcrap.text = my_xml.firstChild.childNodes[0].attributes.pav;

}

};
my_xml.load(“xml2.php”);

But the XML doesn’t load:

http://www.f-manija.domenas.net/awards/Untitled-1.swf

What am I doing wrong?.. Thanks for all of you, who try to help me.
AJSimpson