Unload movie clip

I have a button running the following:

on (rollover) {
this.attachMovie(“coastal_mc”, “window”, 1);
window._x = 150;
window._y = 150;
}

which loads an image next to the button. what i need to add is something that says “on any other event after this event, unload this movieclip” because right now, once you press it, it loads, but if you press another nav button the image stays there and doesnt unload.

thx