Hey guys
I have this script in my flash

Code:
on (release) {

    loadText = new LoadVars();
    loadText.load("http://www.djgdevelop.com/cgl/templates/cgl/images/map/LAX.txt");
    loadText.onLoad = function(success) {
        if (success) {
            // trace(success);
            _parent.newsBox.html = true;
            _parent.newsBox.htmlText = this.myNews;
        }
    };
}
It loads a small text with this info:
HTML Code:
myNews=<font size="16px" color="#FFFFFF"><b>Tampa, FL</b></font>
<b>(ATL)</b>
402 East Oak Avenue Suite 204 Tampa, FL 33602-2704
T. 813.221.5060                F. 813.221.

Everything works fine in my pc, I change the URL and stuff and nothing, the server is just "reading'. Both files are together in the same folder.

What should I do? Thank you in advance