Timer problem

Hi there…

Im doing a classic hit game:

http://www.wbee.dk/testgame/

My problem is the timer!

“load button” loads the game into level2, the game has a mc called “loadmc” where I load the timer into.

No problem if you just play once - but if you unload (with the “unload” button) and load agian the timer runs too fast… :hangover:

Timer action:

i=0;
countID = setInterval(function (){
i++;
if(i==60){
_level2.gotoAndStop(“endofgame”);
clearInterval(countID);
}
},1000); // 1000ms=1sec

PLEASE HELP! THANX…