var fDesc=new Array(); fDesc[0] = "As the name implies, it's an application that takes lets you input the gear ratios from your setup and tells you a little bit more information about them, such as the speeds attainable in each gear at any engine rpm (typically at the engine rpm you change gear). The idea is it makes setting up the gear ratios in the setup a little less trial and error guesswork, and a little more fact.
Although a tidy summary for GRC v1.0, the latest version (v.2.5.3) allows so much more. It would be fair to say the name of Gear Ratio Calculator doesn't do the program justice at all, hence all development will now be under a different name."; 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 = ''; } }