Loading .swf in container

hey peep i need some help with this:

i have problems loading a photo gallery in a container. the thing is that the complex buttons are working fine but im trying to make em load a swf in the container mc

explanation: they are 3 complex buttons and on the buttons i have this code:

 
stop(); 
  
this.onEnterFrame = function(){ 
if(rewind == true){ 
prevFrame(); 
} 
} 
  
this.onRollOver = function(){ 
rewind = false; 
play(); 
} 
  
this.onRollOut = function(){ 
rewind = true; 
}
this.onRelease = function() {
		if (_root.currMovie == undefined) {
				_root.currMovie = "1";
				_root.container.loadMovie("1.swf");
		} else if (_root.currMovie != "1") {
						_root.container.play();
				}
};

but its not working…
the loading movies doesnt have outro just intro thats why i dont use the middle frame thing.

please help me!!!

thnx!