var fDesc=new Array();
fDesc[0] = "RecordexUSA XSight HD Viewer is an educational software.
Main features:
- XSight employs touch, pen and whiteboard friendly navigation with right sized and easy to click icons.
- Get images from your document camera into your whiteboard application, or just about any other application running on your computer.
- Drag the image and its annotations from XSight directly into the other application.";
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 = '';
}
}