I'm trying to use attachMovie to load a movie on top of an external swf movie that I load with a loadMovieNum. I use the following script:

on (release) {
_root.attachMovie("popupList", "ipopupList", 2);
}

The external swf is loaded with this script:

loadMovie("media/hulls.swf", 1);

No matter what level number I use to attach the movie, is shows up behind the external swf. I'm trying to load it on top.

I'm totally lost.
Any help would be greatly appreciated.