I need to duplicate several MC's (each one x 20) when he movie is loaded.

I can't get it to work for the life of me....

Any ideas?
Thanks
~fit

this code resides in _root.MC and the first frame
================================================== ==
count = 0;

function dup1() {
while (count<20) {
circle.duplicateMovieClip("circle"+count, count);
count++;
}
}

count2 = 0;
function dup2() {
while (count2<20) {
circle2.duplicateMovieClip("circle2"+count2, count2);
count2++;
}
}

dup1();
dup2();

================================================== =
Only duplicates the circle2. If I don't initiate the 2nd func (dup2();...it works for circle...and visa/versa?????????

Can you NOT do duplicate movies for multiple MC's??