Path issue!

I have this code working on a button.


on (rollOver) {
    tellTarget ("/rollover1") {
        gotoAndPlay("1text");
    }
}
on (rollOut) {
    tellTarget ("/rollover1") {
        gotoAndPlay("1out");
    }
}
on (release) {
    //customize the window that gets opened
    // 0 equals NO.
    // 1 equals YES.
    address = "http://www.huckwalton.com/bio.html";
    target_winName = "kirupa";
    width = 850;
    height = 800;
    toolbar = 0;
    location = 0;
    directories = 0;
    status = 0;
    menubar = 0;
    scrollbars = 1;
    resizable = 1;
    //sends data back to the function
    openWinCentre(address, target_winName, width, height, toolbar, location, directories, status, menubar, scrollbars, resizable);
}

Works great, but there’s obviously no path recognized when loading this swf with the button on it, to an empty movie clip on another swf. (ie: _root.container.bio …)

Please advise on how this code should look so the button will work in the empty clip!

Thank you!!