Changing the function

The following code is what I use for creating a menu of links to add to my website. currently it opens a new window and loads a website into that window. An example of this can be found on one of the first sites I ever did www.zephn.com/trpa on the bottom left of the main page.

I want to change the function to load a movieclip into a container i have set up in my main movie. I created a little site for my video game friends at www.zephn.com/wowmovies and want to use the menu this code relates to.

I tried subsituting the openwinCentre command with

loadmovie (siteToLoad,“imagelist”);

This did not work. Am I tackling this from the wrong point of view?

var menuItems = [“The Gates of AQ”];

var siteList = [“aq1.swf”];

for (i=0; i<menuItems.length; i++) {
var mc = container.dynamicButton.duplicateMovieClip(“button”+i, i);
mc.menuLabel.text = menuItems*;
mc._y = i*(mc._height-1);
mc.siteToLoad = siteList*;
mc.actualButton.onPress = function() {
openWinCentre(this._parent.siteToLoad, “TRPA”, 780, 640, 1, 1, 1, 1, 1, 1, 1);
};
}