prova così, ma non ho capito molto :master:

codice:
function Button1_onclick() 
{
    wait(100);

}


function wait(ms)
{
    var ts = 0;
    this.cycle = function()
    {
        if (ts < ms) 
        {
            document.getElementById('timebox2').value = ++ts;
        }
        else 
        {
            window.clearInterval(t0);
            alert("ho finito!");
        }
    }

    var t0  =   window.setInterval(function(){this.cycle();},1);
}