var fDesc=new Array();
fDesc[0] = "SourceAFIS is a fingerprint recognition/matching SDK (library), or more generally an Automated Fingerprint Identification System (AFIS).
Features:
- Easy-to-use API with documentation for C#/.NET and experimentally for Java
- Independently tested accuracy of 3.6% EER (FVC-onGoing)
- Searches databases of fingerprints at speed of 10,000 fingerprints/second";
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 = '';
}
}