Dynamic Text Help!

If you’ve read my last post, I’m trying to make an image gallery using transitions. I also want text to load into a box. I am using the following code:

stop();
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() {
ClubM.printText = this.ClubM;
}
};

and i get the following message:

Scene=Scene 1, Layer=actions, Frame=55: Line 2: Statement block must be terminated by ‘}’
clubm.onRelease = function() {

Scene=Scene 1, Layer=actions, Frame=55: Line 24: Syntax error.

Does anyone know what I’m doing wrong!!

Thanks as ever!