var count = 0; var max = 15000; function autoScroll() { if (navigator.appVersion > "3") { if (count < max) { scroll(0,count++); timer = setTimeout("autoScroll()",18); status = max-count; } } }