var fDesc=new Array();
fDesc[0] = "Kwon3D was born in 1990 as a low-end, yet powerful, comprehensive motion analysis software package.
It is a general-purpose motion analysis package with broad and in-depth analysis capabilities.
Its main strengths are the solid theoretical foundation and the streamlined package structure.
This single package meets the needs of various analysis types: robotics, rehabilitation, ergonomics, human mobility biomechanics, sport biomechanics, etc.";
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 = '';
}
}