Dynamic Text Help!

I’m trying to make an image gallery using transitions. I also want text to load into a box, so in affect 2 functions for 1 button. This is harder than it sounds! I am using the following code:

clubm.onRelease = function() {
if (_root.section != “gallery1/Club_m.jpg”) {
_root.section = “gallery1/Club_m.jpg”;
_root.transition.gotoAndPlay(“closing”);
}
loadText = new LoadVars();
loadText.load(“txt/web_text.txt”);
loadText.onLoad = function(blnSuccess) {
if (blnSuccess) {
trace("ClubM: “+ClubM+” | typeof(ClubM): "+typeof (ClubM));
trace("ClubM.print: “+ClubM.print+” | typeof(ClubM.print): "+typeof (ClubM.print));
trace("this.print: “+this.print+” | typeof(this.print): "+typeof (this.print));
ClubM.print = this.print;
}
};
};

But when I test my movie I get a “error loading url” message refering to the .txt file!
Can someone point me in the right direction please!

Thanks
Phil