var fDesc=new Array();
fDesc[0] = "It shows information about SportDevices, developer of the software and
manufacturer of the unit. Shows a window to choose the tests to be loaded in memory. It is possible to load them one by one or several at once. When multiple speeds are recorded for a single test, the first speed sub-test has to be
recorded at low speed. This sub-test is used to perform an analysis of the spring
behavior of the shock absorber. The resulting line will be displayed over the graphs.";
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 = '';
}
}