var fDesc=new Array();
fDesc[0] = "FDx SDK Pro for Windows is a program that provides low-level APIs for Fingerprint Capture, Minutiae Extraction, and 1:1 Matching using simple, small libraries to give the most flexibility for developers of all kinds of applications.
It processes and stores fingerprint minutiae into 3 types of template formats:
- ANSI INCITS 378-2004
- ISO/IEC 19794-2:2005
- SecuGen proprietary 400-byte encrypted.";
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 = '';
}
}