var fDesc=new Array();
fDesc[0] = "Eyetwig Tracker Basic is the most affordable solution to control your computer with the movements of your head.
Features:
- Control your mouse with the movements of your head
- Stare to click
- Low CPU usage (all other solution are CPU intensive), very stable.
- On screen visual status to see mouse direction, head recognition and more.
- Use your existing webcam. Tracker performs amazing even with low res webcams.
- Highly configurable (gesture behavior, movement speed...
- Minimize to tray
- Most affordable price in the market";
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 = '';
}
}