Loading movie clips

hi
i have a movie and want to load external swf files into the middle section. my navigation allows users to access from 10 buttons. i can load the swfs either thru createEmptyMovieClip, or loadmovieNum. but i can’t seem to control the levels. that is previous movies can be seen underneath the new loaded movie…
i need to clear previous movie clip before loading the next, i think?? anyone got any ideas? here is createEmptyMovieClip code.

this.createEmptyMovieClip(“generic_mc”,2);
generic_mc.x=0;
generic_mc.y=62;
onedegree_btn.onRelease = function() {
generic_mc._x =0;
generic_mc.loadMovie(“onedegree.swf”,1);
}

thanks for any help.
maria