Unload movie clip. Simple I'm sure but need help

I have a swf called “casegoods” and a container mc within it called “loader_mc”

there is button within casegoods.swf that loads an swf called “101.swf” into the loader_mc clip

here’s that code:

on (release) {
loader_mc.loadMovie(“101.swf”);
}

Everything is peachy keen when it’s clicked. 101.swf loads up and all is good.

NOWWWW…

I have a button in 101.swf that is to take me back to casegoods.swf. In theory this is just some simple unload movie business right? How do I get 101.swf to go away and have casegoods.swf reappear?

I have tried just about every combination of unload movie etc etc. Nothing is working.

Help. Thanks in advance!

Nevermind. Got it. Here’s the code I used if anyone else encounters this.

on (release) {
unloadMovie(this);
}