Swf is undefined how do I define it for loading

Im getting this in the output window

Error opening URL “file:///aljen%20HD/Users/albertgonzalez/Desktop/monoDiv/undefined.swf”

when I try to load an external swf

I guess my swf is undefined how do I define it :m:

this is my loading script

this.onEnterFrame = “poe”;
container.loadMovie(_root.currMovie+".swf");
//
poesía_btn.onRelease = function() {
_root.currMovie = “poe”;
container.loadMovie(_root.currMovie+".swf");
};
cuento_btn.onRelease = function() {
_root.currMovie = “cue”;
container.loadMovie(_root.currMovie+".swf");
};
ensayo_btn.onRelease = function() {
_root.currMovie = “ens”;
container.loadMovie(_root.currMovie+".swf");
};
entrevista_btn.onRelease = function() {
_root.currMovie = “ent”;
container.loadMovie(_root.currMovie+".swf");
};
resena_btn.onRelease = function() {
_root.currMovie = “res”;
container.loadMovie(_root.currMovie+".swf");
};

whats wrong :h: