Minor button prob

my buttons not loading the swf.
heres the code im using for the button.

on (rollOver) {
_root.rollover.gotoAndPlay(“NEWS”);
}
on (rollOut) {
_root.rollover.gotoAndPlay(“NEWSOFF”);
}
on (release) {
if (_root.currMovie == undefined) {
_root.currMovie = “NEWS”;
contents.loadMovie(“NEWS.swf”);
} else if (_root.currMovie != “NEWS”) {
if (contents._currentframe>=contents.midframe) {
_root.currMovie = “NEWS”;
contents.play();
}
}
}

the rollovers work and the code works in another fla. file, so i cant see where the problem is.
can anyone help?:worried:

edit: its also not loading the swf when the file plays as with this code
_root.currMovie = “NEWS”;
contents.loadMovie(_root.currMovie+".swf");