HOW TO Copy a scene

Hi,
I would like to copy one scene from one .fla file to another. How should I do it?
**INCLUDING the actions, layers, etc…
Or alternatively, how do I link to various scene in a flash movie from another movie?
Thank you.

Another Question,
I have an opened menu.
Now I want every time I press on a button, the content of the previous item that pressed will dissappear and the content of the current button will appear.

I have this code, I used LABELS.

on (press) {
if (_global.stat == 1) {
gotoAndStop(“shiurimclosed”);
gotoAndStop(“targilimclosed”);
} else if (_global.stat == 0) {
gotoAndStop(“shiurimopened”);
}
}

but the gotoAndStop(“targilimclosed”); is not working, so until I close manually the previous item, the new item is not openning.
How could I fix this?

Thank you.