Code for unloading a movie, while loading another

I have a movie that initally onloads onto the stage at target MC. I then want this movie to unload when the following button is moused over or clicked for the same MC target. What would be the syntax for this to work with the following?

Button1.onRelease = function() {
loadMovie(“home.swf”, “target”);
};

Question 2: What would the syntax look like if the inital movie came into a different target MC named “target 2”?

TIA

B.Huston