Сделал вот так - результат не изменился:
function startClock() {
if (vtime == stattime) {
document.getElementById('blockwait').style.display = 'none';
document.getElementById('blocktimer').style.display = '';
}
var mya = true;
if (vtime >= 0 && mya ) {
document.forms['frm'].clock.value = vtime;
vtime --;
tm = setTimeout("startClock(0)", 1000);
} else {
if (tm)
clearTimeout(tm);
nextstep(0, cnt);
}
}
window.onfocus = function(){ mya = true; startClock()}
window.onblur = function(){ mya = false; clearTimeout(tm);}