var fDesc=new Array(); fDesc[0] = "Digital Timer is a useful tool for measuring time durations - for example, if you want to measure how long it takes for a program to run. Digital Timer offers these features:

- Countdown timer - counts down (like a microwave oven timer) from some HH:MM:SS value to zero.
- Stopwatch - continuously counts up until stopped.
- Play a wav file - when the countdown timer expires, Digital Timer will optionally play a wav file.
Compact size - takes very little space on the desktop.
- Play once/Play until stopped - play the sound only once, or play it continuously (every 30 seconds) until the Stop button is clicked."; 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 = ''; } }