var fDesc=new Array(); fDesc[0] = "IH Spinal Cord Impactor Software is a program designed to work with the Head Impactor device that is composed of two main frames. The left frame is for setting up all the experiment variables, storing comments and running the experiment. The right frame contains all the post-experiment data displayed as a force graph, a displacement graph and a chart of the raw values from the control unit."; 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 = ''; } }