var fDesc=new Array(); fDesc[0] = "Virtual Stopwatch Presentation is designed primarily for presentation applications that need a visual time display. It supports thresholds, which allow you to change display colors, bring up a message, or play a sound at set points in the timing cycle. You can also make the whole application window transparent so that the time display can be superimposed over other applications. You can control the stopwatch/timer functions remotely via the joystick port. The digital or analog display can be sized large to make it easy to see."; 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 = ''; } }