Help pausing a movie

I have the following code:-

[color=slategray]if ((horowitz_2 && horowitz_1)== 2) {
set(“horowitzTotal”, “4”);
} else if ((horowitz_2 && horowitz_1)!= 2) {
set(“horowitz_1”, “0”);
set(“horowitz_2”, “0”);
tellTarget (“mc_horowitz”) {
gotoAndStop(1);
_root.txt._visible=false;
}
tellTarget (“mc_llyfr_horowitz”) {
gotoAndStop(1);
_root.txt._visible=false;
}
}[/color]

[color=black]I want my movie to pause for a couple of seconds before performing the tellTarget (gotoAndStop) action. Any ideas how I would do this.[/color]

[color=black]Thanks.[/color]