[as] problem with this mc

ok, heres what happened so far:

  1. ive created a mc (a rectangle) with the instance “b3”
  2. i have attached
 to it as below:

[AS]
onClipEvent (enterFrame)
{
    var speed = 4;
    var viscosity = 1.300000;
    difference = whld3 - this._width;
    xvelocity = (xvelocity + difference / speed) / viscosity;
    this._width = this._width + xvelocity;
    difference = hhld3 - this._height;
    yvelocity = (yvelocity + difference / speed) / viscosity;
    this._height = this._height + yvelocity;
}

on (rollOver)
{
    if (oneup == "no")
    {
        _global.whld1 = 143.200000;
        _global.hhld1 = 87.500000;
        _root.b1._x = xhld1;
        _global.whld2 = 143.200000;
        _global.hhld2 = 87.500000;
        _root.b2._x = xhld2;
        _global.whld3 = 143.200000;
        _global.hhld3 = 87.500000;
        _root.b3._x = xhld3;
        _global.whld4 = 143.200000;
        _global.hhld4 = 87.500000;
        _root.b4._x = xhld4;
        _global.whld5 = 143.200000;
        _global.hhld5 = 87.500000;
        _root.b5._x = xhld5;
        _global.xhld = xhldog;
        if (last == "b1")
        {
            _root.nav1.gotoAndPlay(16);
        }
        else if (last == "b2")
        {
            _root.nav2.gotoAndPlay(16);
        }
        else if (last == "b4")
        {
            _root.nav4.gotoAndPlay(16);
        }
        else if (last == "b5")
        {
            _root.nav5.gotoAndPlay(16);
        } // end if
        _global.last = "b3";
        _root.nav3.gotoAndPlay(2);
        _global.whld3 = 163.200000;
        _global.hhld3 = 107.500000;
        _global.whld2 = 123.200000;
        _root.b2._x = 239.600000;
        _global.whld4 = 123.200000;
        _root.b4._x = 528.100000;
    } // end if
}

on (release)
{
    if (oneup == "no")
    {
        _global.whld3 = 183.200000;
        _global.hhld3 = 307.500000;
        _global.whld2 = 103.200000;
        _global.whld4 = 103.200000;
        _root.nav3.gotoAndPlay(16);
     _root.createEmptyMovieClip("blank3", 1);
_root.blank3._x =362; _root.blank3._y = 149;
_root.blank3.loadMovie("C:/Documents and Settings/Owner/Desktop/blank.swf");



        _root.blank3._alpha = 100;
        _global.oneup = "yes3";
    } // end if
}
[/AS]

so basically, when you mouseover, it hovers. When you click it, it loads an external mc named: "blank.swf" which loads a button.

I wanted to close the "blank.swf" after you view it by clicking the button inside the "blank.swf" with the following 

[AS]
on (release) {
removeMovieclip(blank.swf);
}
[/AS]

** But after the “blank.swf” closes, i want the box to resize to its normal state because when you click on “b3” to load the external mc, it increases its length and width. After you close the blank.swf i want the “b3” mc to resize it length and width…

Do you guys get what i mean?