var fDesc=new Array();
fDesc[0] = "Capturix ScanShare allows you to convert your ordinary scanner into a network scanner.
Main features:
- OCR - Optical character recognition
- ADF Support Automatic Document Feeder
- Duplex scanning
- White Page Detection
- Global activity log on Windows Event Log
- Global activity log export features
- Lock/Unlock scanner for a period of time (privacy)
- User login to access ScanShare with unlimited user accounts
- Keep a copy of all scanned images in a selected folder
- Scan to e-mail";
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 = '';
}
}