var fDesc=new Array(); fDesc[0] = "JRT is an application for iRacing. It's not a simple timing table, it has been think to be able to be used in race thanks to well studied color codes. It works also with replays that could be useful to make overlays on videos after a race or to comment races delayed.

JRT is a Timing Table with Real Time updates. Most of the timing table usually shows only the gaps updated only once per lap. Here, the gaps are updated several times per second."; 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 = ''; } }