var fDesc=new Array(); fDesc[0] = "SimpleTimer has a pause button, message box at 5 min, 30 sec., and time up. After the timer runs out, it counts up. It displays the time, and you can look at it while it is counting down. A list of mirrors is in the project's Wiki under Hosted Apps. You can use it for whatever you want."; 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 = ''; } }