External text: what the crap?

Ok. I’m using the following code to load text…


blogText = new LoadVars();
blogText.dsp = "blog";
blogText.onLoad = function(success) {
    if (success) {
        module_bigBlog.date.text = this.date;
        module_bigBlog.strTitle.text = this.strTitle;
        module_bigBlog.body.text = this.body;
    } else {
        module_bigBlog.date.text = "nope";
    }
};
blogText.sendAndLoad("http://localhost/freaksheep/main.php", blogText, "GET");

But I’m getting nothing. I have the .fla at www.freaksheep.net/main.fla (right click and save)

I really dont know what could be doing it :frowning:

_naaman