var fDesc=new Array();
fDesc[0] = "Use your Leap Motion Controller to interact with your Windows PC. Touchless for Windows creates a virtual ‘touch’ screen in the air. Just lift your hand or finger to navigate your computer. Browse the web, open applications and documents, and control menu items — without touching anything.
Touchless for Windows includes basic and advanced levels, so you can choose your level of 3D interaction.";
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 = '';
}
}