var fDesc=new Array(); fDesc[0] = "BTDTimer (Big Text Display Countup) is a digital Countup timer displayed in large font on a window that is maximized to the screen so that it is clearly visible from a distance.
The user can customize the Countup time display by selecting a font type, style and size. Additionally, the user can also change the text color and display background color.
The user can control the Countup timer using four push buttons: Start, Pause, Stop and Reset.
To ensure that the Countup time display is uninterrupted, the program automatically detects whether the screen saver is active and if so, it temporarily switches it off while the program is running. And when this program is running, it also automatically disables the computer's power sleep save/off mode."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }