var fDesc=new Array(); fDesc[0] = "The Fingerprint Utility aims to identify users by scanning their fingerprints instead of entering a password. Using the following operations, a user can scan their fingerprints on the sensor, and then use this method of authentication for the following processes, instead of entering a password with the keyboard.

To make sure the utility works in the case of a finger injury, please enroll two or more fingers per user. A total of 20 fingerprints can be enrolled using the fingerprint sensor, so if the PC is used with multiple User accounts, make sure that you can divide the 20 entries among all users."; 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 = ''; } }