var fDesc=new Array(); fDesc[0] = "LFS Gear Ratio Calculator is an application that 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 to set up the gear ratios in the setup a little less trial and error guesswork, and a little more fact."; 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 = ''; } }