Unload a movie - as included

I’m currently working with this code, and am wondering how to unload 01.swf when I click on btn_02 to load 02.swf, rather than just loading over the top of 01.swf.

Any suggestions for better code, warmly welcomed! This has worked, but seems to come up with errors adding new buttons (which I want to do)

=========================

// Container
var imageLoader:Loader = new Loader();

// Url Requests
var imageRequest:URLRequest = new URLRequest(“01.swf”);
var imageRequest02:URLRequest = new URLRequest(“02.swf”);

// Intial Page Loaded
imageLoader.load(imageRequest)
addChild(imageLoader)

// Button Functions
function goHome (e:MouseEvent):void{
imageLoader.load(imageRequest)
addChild(imageLoader)
}
home_btn.addEventListener(MouseEvent.CLICK, goHome);

function go02 (e:MouseEvent):void{
imageLoader.load(imageRequest02);
addChild(imageLoader);
}
btn_02.addEventListener(MouseEvent.CLICK, go02);

=========================

Many thanks in advance!