Load swf question?

i am loading external .swfs randomly into a EmptyMovieClip and they are blowing up HUGE on import? I have checked all the publish settings and they are correct… I am really confused AGAIN…

the imported movies are supposed to be 794w x 541h…

here is the script I am using…

_root.createEmptyMovieClip(“movieTarget”,1);
movieTarget._x = 3, movieTarget._y = 56 ;
filename = [“home_1.swf”, “home_2.swf”, “home_3.swf”, “home_4.swf”, “home_5.swf”];
path = “http://www.zartwurks.com/home_swfs/”;
i = filename.length;
k = Math.floor(Math.random()*i);
loadMovie(path+filename[k], movieTarget);

thanks for the help ahead of time… JK