AS Help!?

Hey all,

i have a button on frame 20 but i will need to call a radio button which is in the first frame but i can’t seem to get it anybody know how to do it…???

here is my code:


on (release) {
    if (_root.agreement_terms.selected == true) {
        _root.agreement_terms.selected = true;
        _root.pop_up._alpha = 0;
        gotoAndStop(previousFrame);
        previousFrame = _currentframe;
    } else if (_root.agreement_terms.selected == false) {
        _root.agreement_terms.selected = false;
        _root.pop_up._alpha = 0;
        gotoAndStop(previousFrame);
        previousFrame = _currentframe;
    }
}