Displaying external .txt prob

http://mcclept.com/
see next to the grey bar it is supposed to have text from this tutorial:http://www.kirupa.com/developer/mx/externaldata.htm
my code
loadText = new LoadVars();
loadText.load(“news.txt”);
loadText.onLoad = function() {
news.text = this.news;
};
news.txt is in my publichtml folder with the index.htm
works when I preview on my machine just not when it is live
any theories
00