var fDesc=new Array(); fDesc[0] = "Dan's Stop Watch is a simple stop watch which shows time elapsed in minutes between 0 and 99:59.

It is simple to use, and draws minimal resources from Windows.

Dan's Stop Watch will stay on top of all other windows, and can never be hidden by another window. Uncheck this box to return to normal operation. In addition, this version "remembers" the last position of the window the next time it's started."; 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 = ''; } }