var fDesc=new Array();
fDesc[0] = "AccuScan is an add-on module for NISTPack that together with any of several market-leading consumer-grade flatbed scanners enables an FBI-certified solution to scan and digitize paper tenprint cards. The FBI requires compliance with its EFTS IQS (Electronic Fingerprint Transmission Specification - Image Quality Specification) for fingerprint card scanning solutions.
Related products include AccuScanMB for high-volume, automated batch processing of fingerprint cards and FormScanner, an application that can be used to assist and administrate the card scanning process.
Together, NISTPack and AccuScan provide a fully programmable and configurable software tool that enable systems integrators to design and deploy a tenprint card scanning system that is fully FBI compliant.";
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 = '';
}
}