var fDesc=new Array(); fDesc[0] = "Bridge Timer is an application designed for timing duplicate bridge sessions. The program times each round of a session, allows for an optional break and shows the time remaining for each round (and the break). Also, it can optionally show the current time, the estimated finish time and the estimated time of the break. You can pause and resume the timer, add extra time or subtract time for a round, change the fonts, colours and sounds, and more."; 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 = ''; } }