var fDesc=new Array(); fDesc[0] = "IDKit PC SDK includes both a 1:1 verification, which compares two fingerprints for their similarity, as well as a 1:N identification, which quickly searches for a fingerprint in a database of fingerprints. Unlike other fingerprint SDK solutions, IDKit PC SDK represents all fingerprints as “user records,” making for simple retrieval with basic function calls such as RegisterUer, FindUser, and RemoveUser.

IDKit PC SDK has made the process of identifying and verifying users as simple as possible."; 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 = ''; } }