var fDesc=new Array(); fDesc[0] = "This is a very large digital clock screensaver. The black background covers everything including the task bar on the bottom. It has no frame so there are no borders. It shows the time, date, and day of the week. That is all it does. Just a clock. But it is a huge clock man. To exit the program just press any key, click the mouse, or move the mouse. It installs both as a normal program and a real screensaver with password ability and preview in the small Windows screensaver setup screen. The display can be cutomized to show the time only, AM/PM, or 24 hour time. The display fonts, font size, and colors can also be changed. The day, date, and seconds display can be turned on or off."; 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 = ''; } }