묻고답하기

맨땅에 헤딩하길 몇일째인지도 모르겠습니다..
메뉴 플래시 소스를 받았습니다.. 액션쪽 내용이
aMenuName = [main, profile, gallery, board, visitor];
aMenuLink = ["http://",
                         "http://",
                         "http://",
                         "http://",
                         "http://"];
nMenuNum = 5;
for (var i = 0; i<nMenuNum; i++) {
        aMenuName[i].isHit = 0;
        aMenuName[i].sURL = aMenuLink[i];
        aMenuName[i].onMouseMove = function() {
                if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
                        if (this.isHit != 1) {
                                this.gotoAndPlay("start");
                        }
                        this.isHit = 1;
                } else {
                        if (this.isHit != 0) {
                                this.gotoAndPlay("end");
                                this.isHit = 0;
                        }
                }
        };
        aMenuName[i].back.onRelease = function() {
                getURL(this._parent.sURL);
        };
}


로 되어 있는데요.. 현재 링크로 되어있습니다...
탑과 메인 프레임셋으로 구성하였는데요 메뉴클릭시 메인쪽에 내용을 뿌려주고 싶은데요...
링크로도 제로보드게시판 연결할수 있는지요?