var fDesc=new Array(); fDesc[0] = "The MultiTrack Stopwatch is a classical stopwatch that measures the time and distances. The stopwatch has 10 counters which measure time separately, or they can act as holders of the different laps. The results of the measurements can be saved on a file or to the clipboard. All timers can be stopped, started and reset in one moment or independently from one another The difference from the classical stopwatch is that this program also allows some calculations to be made .For example it can calculate the distance using the formula time*speed=distance."; 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 = ''; } }