var fDesc=new Array(); fDesc[0] = "2 minute countdown timer that counts back in seconds. When it reaches zero it makes 3 loud noises. The countdown timer has 3 buttons on it start, stop, reset. The start button starts the countdown timer, the stop button stops the timer, this same button can also be used as a pause button. The reset button resets the count down timer to it's default setting of 120, which is 2 minutes."; 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 = ''; } }