var fDesc=new Array();
fDesc[0] = "SkillSpector is a video based motion and skill analysis tool for Windows. SkillSpector is freeware and can be downloaded and installed on any computer. No registration, expiration, or adware.
Main Features:
- Video overlay for direct video on video comparisson
- 2D and 3D analysis
- Standard model definitions for fast analysis
- Semi-automatic digitizing using image processing techniques
- Easy advanced analysis of linear and angular kinematic data
- Calculation on intertia
- 3D representation of movement
- Simple video calibration";
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 = '';
}
}