var fDesc=new Array();
fDesc[0] = "The SmartNav software is designed to provide you, the user, with a variety of options to maximize your enjoyment of the product.
EXCLUSIVE SOFTWARE FEATURES:
- Absolute Cursor Positioning Mode – allows a fixed relationship to be set up between the head location and the cursor position
- Separate X and Y Scaling – to accommodate users with limited horizontal or vertical range of motion
- Smoothing Control – to dampen unsteady head movement
- Key Activated – to have the cursor only move when you hold down a key
- Pause – to simply pause the system
- Hot Keys – for allocating keys of your keyboard to perform mouse clicks";
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 = '';
}
}