var fDesc=new Array(); fDesc[0] = "BTDClock is a digital clock displayed in large font on a window that is maximized to the screen so it can be clearly seen from a distance. To ensure that the 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. BTDClock also automatically disables the computer's sleep power 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 = ''; } }