var fDesc=new Array();
fDesc[0] = "Video Associates Labs is now offering the fastest and most efficient auto-positioning and auto-cropping control with this latest software upgrade.
Features:
-The fastest camera positioning available for photo-id applications
-Immediate camera position in preview mode before capture is taken
-Place the mouse cursor where you want any face feature to appear and its there in under a second.
-Double click the Left mouse button to immediately center image to any predefined location
-No calibration needed, all functions work when new software is loaded
-No backdrop needed.
-Works in any environment";
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 = '';
}
}