var fDesc=new Array(); fDesc[0] = "CountDown has 4 different individual timers that counts the time down for your specified task. The program has been modified to run as four individual programs. CountDown, which counts the time down to 0:00. CountUp, which will count the time upwards. Date CountDown, which will show you the days, hours, minutes and seconds to a future date. And Full Screen CountDown, which looks like a screen saver, to time downwards to 0:00."; 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 = ''; } }