(FMX)Beginner needs help! :))I'm desperate

this is the script a found in XML driven drop down menu from this site:
[font=Times New Roman]GenerateMenu = function(container, name, x, y, depth, node_xml) {[/font]

[font=Times New Roman]var curr_node;[/font]

[font=Times New Roman]var curr_item;[/font]

[font=Times New Roman]var curr_menu = container.createEmptyMovieClip(name, depth);[/font]

[font=Times New Roman]for (var i=0; i<node_xml.childNodes.length; i++) {[/font]

[font=Times New Roman]curr_item = curr_menu.attachMovie(“menuitem”,“item”+i+"_mc", i);[/font]

[font=Times New Roman]curr_item._x = x;[/font]

[font=Times New Roman]curr_item._y = y + i*curr_item._height;[/font]

[font=Times New Roman]curr_item.trackAsMenu = true;[/font]

[font=Times New Roman]curr_node = node_xml.childNodes*;[/font]

[font=Times New Roman]curr_item.action = curr_node.attributes.action;[/font]

[font=Times New Roman]curr_item.variables = curr_node.attributes.variables;[/font]

[font=Times New Roman]curr_item.name.text = curr_node.attributes.name;[/font]

[font=Times New Roman]if (node_xml.childNodes*.nodeName == “menu”){[/font]

[font=Times New Roman]curr_item.node_xml = curr_node;[/font]

[font=Times New Roman]curr_item.onRollOver = curr_item.onDragOver = function(){[/font]

[font=Times New Roman]var x = this._x + this._width - 5;[/font]

[font=Times New Roman]var y = this._y + 5;[/font]

[font=Times New Roman]GenerateMenu(curr_menu, “submenu_mc”, x, y, 1000, this.node_xml);[/font]

[font=Times New Roman]var col = new Color(this.background);[/font]

[font=Times New Roman]col.setRGB(0xf4faff);[/font]

[font=Times New Roman]};[/font]

[font=Times New Roman]}else{[/font]

[font=Times New Roman]curr_item.arrow._visible = false;[/font]

[font=Times New Roman]curr_item.onRollOver = curr_item.onDragOver = function(){[/font]

[font=Times New Roman]curr_menu.submenu_mc.removeMovieClip();[/font]

[font=Times New Roman]var col = new Color(this.background);[/font]

[font=Times New Roman]col.setRGB(0xf4faff);[/font]

[font=Times New Roman]};[/font]

[font=Times New Roman]}[/font]

[font=Times New Roman]curr_item.onRollOut = curr_item.onDragOut = function(){[/font]

[font=Times New Roman]var col = new Color(this.background);[/font]

[font=Times New Roman]col.setTransform({ra:100,rb:0,ga:100,gb:0,ba:100,bb:0});[/font]

[font=Times New Roman]};[/font]

[font=Times New Roman]curr_item.onRelease = function(){[/font]

[font=Times New Roman]Actionsthis.action;[/font]

[font=Times New Roman]CloseSubmenus();[/font]

[font=Times New Roman]};[/font]

[font=Times New Roman]}[/font]

[font=Times New Roman]};[/font]

[font=Times New Roman]Createmainmenu = function(x, y, depth, menu_xml){[/font]

[font=Times New Roman]GenerateMenu(this, “mainmenu_mc”, x, y, depth, menu_xml.firstChild);[/font]

[font=Times New Roman]mainmenu_mc.onMouseUp = function(){[/font]

[font=Times New Roman]if (mainmenu_mc.submenu_mc && !mainmenu_mc.hitTest(_root._xmouse, _root._ymouse, true)){[/font]

[font=Times New Roman]CloseSubmenus();[/font]

[font=Times New Roman]}[/font]

[font=Times New Roman]};[/font]

[font=Times New Roman]};[/font]

[font=Times New Roman]CloseSubmenus = function(){[/font]

[font=Times New Roman]mainmenu_mc.submenu_mc.removeMovieClip();[/font]

[font=Times New Roman]};[/font]

[font=Times New Roman]Actions = Object();[/font]

[font=Times New Roman][color=red]Actions.gotoURL = function(urlVar){[/color][/font]

[font=Times New Roman][color=red]getURL(urlVar, “_blank”);[/color][/font]

[font=Times New Roman]};[/font]

[font=Times New Roman]Actions.message = function(msg){[/font]

[font=Times New Roman]message_txt.text = msg;[/font]

[font=Times New Roman]};[/font]

[font=Times New Roman]Actions.newMenu = function(menuxml){[/font]

[font=Times New Roman]menu_xml.load(menuxml);[/font]

[font=Times New Roman]};[/font]

[font=Times New Roman]menu_xml = new XML();[/font]

[font=Times New Roman]menu_xml.ignoreWhite = true;[/font]

[font=Times New Roman]menu_xml.onLoad = function(ok){[/font]

[font=Times New Roman]if (ok){[/font]

[font=Times New Roman]Createmainmenu(10, 10, 0, this);[/font]

[font=Times New Roman]message_txt.text = “message area”;[/font]

[font=Times New Roman]}else{[/font]

[font=Times New Roman]message_txt.text = “Eroare:fisierul XML nu a fost incarcat!”;[/font]

[font=Times New Roman]}[/font]

[font=Times New Roman]};[/font]

[font=Times New Roman]menu_xml.load(“menu1.xml”);[/font]

The red marked text is the problem. i don’t know how to load a swf file in a blank (empty) movie clip which a named contents. i changed _blank into _self but i have to put the menu movie clip over and over again. i even tried with loadMovie, but it has the same result.
pls, give me a solution!!! there are already two days of head ake. don’t let me die!!!