I have this php page that I'm pulling into a dynamic text box connected to a scroll bar component. It works fine when I'm looking at my site locally, but doesn't work on my live site. Here is the code I used:

Code:
loadVarsText = new loadVars();
loadVarsText.load("http://www.listenfaster.com/blueq/flash_news.php");
loadVarsText.onLoad = function(success) {
	if (success) {
		trace("done loading");
		scroller.html = true;
		scroller.htmlText = this.var1;
	} else {
		trace("not loaded");
	}
};