Animation wont play a 2nd time....how do I Clear Cache?

Hey,
I have the following code that brings in a movie animation. My problem is that once the animation is finished and the user presses the ‘back’ button to navigate elsewhere on the website, if they go back to the animation and click the ‘great_btn’ the animation won’t play again.

ActionScript Code:
[FONT=Courier New][COLOR=#0000ff]_root[/COLOR].[COLOR=#000080]main_cntr[/COLOR].[COLOR=#000080]btns_mc[/COLOR].[COLOR=#000080]great_btn[/COLOR].[COLOR=#0000ff]onRelease[/COLOR] = [COLOR=#000000]function[/COLOR]COLOR=#000000[/COLOR] [COLOR=#000000]{[/COLOR]

loadscrollItCOLOR=#000000[/COLOR]; disableBtnsCOLOR=#000000[/COLOR];
[LEFT][COLOR=#0000ff]_root[/COLOR].[COLOR=#000080]homepage_cntr[/COLOR].[COLOR=#0000ff]_alpha[/COLOR] = [COLOR=#000080]0[/COLOR];
[COLOR=#0000ff]_root[/COLOR].[COLOR=#000080]photos_cntr[/COLOR].[COLOR=#0000ff]_alpha[/COLOR] = [COLOR=#000080]0[/COLOR]; [COLOR=#0000ff]_root[/COLOR].[COLOR=#000080]btns_cntr[/COLOR].[COLOR=#000080]alphaTo[/COLOR]COLOR=#000000[/COLOR];
[COLOR=#0000ff]_root[/COLOR].[COLOR=#000080]main_cntr[/COLOR].[COLOR=#000080]main_txt[/COLOR].[COLOR=#000080]alphaTo[/COLOR]COLOR=#000000 [/COLOR]
[COLOR=#0000ff]_root[/COLOR].[COLOR=#000080]sub_cntr[/COLOR].[COLOR=#000080]main_txt[/COLOR].[COLOR=#000080]alphaTo[/COLOR]COLOR=#000000 [/COLOR]
[COLOR=#0000ff]_root[/COLOR].[COLOR=#000080]main_cntr[/COLOR].[COLOR=#000080]sub_txt[/COLOR].[COLOR=#000080]alphaTo[/COLOR]COLOR=#000000 [/COLOR]
[COLOR=#0000ff]_root[/COLOR].[COLOR=#000080]sub_cntr[/COLOR].[COLOR=#000080]sub_txt[/COLOR].[COLOR=#000080]alphaTo[/COLOR]COLOR=#000000 [/COLOR]
[COLOR=#0000ff]_root[/COLOR].[COLOR=#000080]main_cntr[/COLOR].[COLOR=#000080]btns_mc[/COLOR].[COLOR=#000080]alphaTo[/COLOR]COLOR=#000000 [/COLOR]
[COLOR=#0000ff]_root[/COLOR].[COLOR=#000080]great_cntr[/COLOR].[COLOR=#0000ff]loadMovie[/COLOR]COLOR=#000000[/COLOR];
[COLOR=#0000ff]_root[/COLOR].[COLOR=#000080]pattern_cntr1[/COLOR].[COLOR=#000080]background1[/COLOR].[COLOR=#000080]alphaTo[/COLOR]COLOR=#000000[/COLOR];
[COLOR=#0000ff]_root[/COLOR].[COLOR=#000080]pattern_cntr2[/COLOR].[COLOR=#000080]background2[/COLOR].[COLOR=#000080]alphaTo[/COLOR]COLOR=#000000[/COLOR];
[COLOR=#0000ff]_root[/COLOR].[COLOR=#000080]main_cntr[/COLOR].[COLOR=#000080]back_btn1[/COLOR].[COLOR=#000080]alphaTo[/COLOR]COLOR=#000000 [/COLOR]
[COLOR=#000000]}[/COLOR][/LEFT]

[/FONT]

I tried adding this line of code to the back_btn so that the animation is actually loaded in on every click of ‘great_btn’ but it’s not working.

ActionScript Code:
[FONT=Courier New][COLOR=#0000ff]_root[/COLOR].[COLOR=#000080]great_cntr[/COLOR].[COLOR=#0000ff]unloadMovie[/COLOR]COLOR=#000000[/COLOR];

[/FONT]

Any ideas?
Cx