var fDesc=new Array();
fDesc[0] = "The SmartNav software is designed to provide you with a variety of options to maximize your enjoyment of the product.
The SmartNAV software allows the user to re-map keys from their keyboard and assign them to emulate the Left, Right and Middle mouse buttons. This provides a convenient way to click without having to take your hands off the keyboard.";
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 = '';
}
}