var fDesc=new Array(); fDesc[0] = "BTDCountdown (Big Text Display Countdown) is a digital countdown timer displayed in large font on a window that is maximized to the screen so that it is clearly visible from a distance.
To ensure that the countdown 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.
The user can customize the countdown 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 countdown timer using three push buttons: Start, Stop and Reset."; 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 = ''; } }