var fDesc=new Array(); fDesc[0] = "Shock Dyno is an application that allows users to measure shock absorber performance. You can view the summary graph, which is updated with each data recording, so you can analyze if the new data is in line with previous data and with data from other springs. Also, you can create detailed graphs and reports for the current test data, and comparison reports with previous tests."; 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 = ''; } }