var fDesc=new Array();
fDesc[0] = "The distance of a pass, the approach angle of a ball, its speed … a good athlete realizes these parameters within split seconds and without thinking. However, an objective assessment of a match or a training situation requires physical measurement parameters.
These data can be obtained with utilius easyinspect by analysing normal video sequences – fast, easy and amazingly precise.
As uncomplicated the use of this software is, as high complex and groundbreaking are the algorithms with which it „translates“ two-dimensional images into the three-dimensional space and carries out the desired measurements of spaces, angles, distances and speeds.";
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 = '';
}
}