Can i load an as2 swf then unload an as3 swf?

hi!!

how can i unload an as3 swf then load an as2 swf in its place…
it does loads but the as3 get stuck behind the as2 and some of the external file wont show up…
here is my code in as3:

bck.addEventListener(MouseEvent.CLICK, bckclick);
function bckclick(MouseEvent:Event):void {
var loader:Loader = new Loader();
//function loadswf(target:String){
loader.load(new URLRequest(“as2.swf”));
addChild(loader);}

how do i add an as3.unload to this?:hurt:

pls help…