You can just stop the timer (myTimer.stops() and use setTimeOut, which you set to 15 seconds and the timer will start again.

var intervalId:uint = setTimeout(myDelayedFunction, 15000);

function myDelayedFunction():void {
myTimer.start();
}