How to stop a function?

Hi.

I have this function:

function proceed()
{
if (this._currentframe == 4)
{
this.gotoAndPlay(1);
}
else
{
clearInterval(delayTime);
nextFrame();
}
}

How can I stop it trough a button?