Calling swf file with xml

need help with calling external .swf files into main movie using xml driven itunes style menu. Below is the code the itunes scroller uses to call a url from the xml. I need it to call something like (swfFile=“fillers.swf”) instead of just a url. PLEASE HELP!!!:*(

img_info.artistLink.enabled = true;
if (infostruc[current - 1].authLink == undefined) {
img_info.authLink.enabled = false;
} else {
if (infostruc[current - 1].authLink == “undefined”) {
img_info.authLink.enabled = false;
} else {
img_info.artistLink.onPress = function() {
getURL(infostruc[current - 1].authLink, “_blank”);
};
}
}
img_info.albumLink.enabled = true;
if (infostruc[current - 1].albumLink == undefined) {
img_info.albumLink.enabled = false;
} else {
if (infostruc[current - 1].albumLink == “undefined”) {
img_info.albumLink.enabled = false;
} else {
img_info.albumLink.onPress = function() {
getURL(infostruc[current - 1].albumLink, “_blank”);
};
}
}