.swf wont open on release

I’m posting my site so no one has to download anything to see it.

index.swf

link_cat.swf

http://votillity.com/link_cat/sub_link_cat/link_cat_eMail.swf

If you click on each link, you’ll see the content that I want to see all at once. I want people to be able to click on the first gold button then the first reb button to see the thumbnails but, for whatever reason, when I click on the red button, nothing happens. Before, it worked but then the red buttons would disappear when I clicked on them. The thumbnails would still be there but clicking on the first gold button again would be annoying. How can I solve my first problem and prevent the second?

Here’s some code to elaborate

From the gold button…

on (release) {
loadMovie("link_cat/link_cat.swf", "_level1");
}

From the red button…

on (release) {
loadMovie("sub_link_cat/link_cat_eMail.swf", "_level1");
}

Any help is appreciated. Thank you in advance!