Help with animation loop

I have the following code and I need it to loop a certain number of times once it has finished the last animation tween. The clip runs a total of 15 seconds. It is a banner and will go on a few different sites so it needs to loop for some 3 times other fives, and some not at all. ANY HELP IS MUCH APPRICIATED !

// loads action script tween
#include “lmc_tween.as”

// set page elements alpha to zero this.introBox_mc._alpha = “0”;
this.titleText_mc._alpha = “0”;
this.outlineBoxBg_mc._alpha = “0”;
this.introBox_mc._alpha = “0”;
this.text1_mc._alpha = “0”;
this.counter_mc._alpha = “0”;
this.text2_mc._alpha = “0”;
this.text3_mc._alpha = “0”;
this.logo_mc._alpha = “0”;

// set page animation sequence
this.introBox_mc.alphaTo(100,.25,”easeOutSine”,0);
this.outlineBoxBg_mc.alphaTo(100,.25,”easeOutSine”,0);
this.titleText_mc.alphaTo(100,1,”easeOutSine”,0);
this.introBox_mc.alphaTo(0,.5,”easeOutSine”,2);
this.titleText_mc.alphaTo(0,.5,”easeOutSine”,2);
this.text1_mc.alphaTo(100,1,”easeOutSine”,2.5);
this.text1_mc.alphaTo(0,.75,”easeOutSine”,4.5);
this.counter_mc.alphaTo(100,2,”easeOutSine”,5);
this.counter_mc.frameTo(215,4,”easeOutLinear”,5);
this.counter_mc.alphaTo(0,1,”easeOutSine”,9);
this.text2_mc.alphaTo(100,1,”easeOutSine”,10);
this.text2_mc.alphaTo(0,1,”easeOutSine”,11);
this.text3_mc.alphaTo(100,1,”easeOutSine”,12);
this.logo_mc.alphaTo(100,1,”easeOutSine”,12);
this.text3_mc.alphaTo(0,1,”easeOutSine”,14.5);
this.logo_mc.alphaTo(0,1,”easeOutSine”,14.5);