var fDesc=new Array(); fDesc[0] = "EMV Card Browser is a utility that allows you to query and view the contents of the chip on your Chip & PIN or EMV smart card. It allows you to communicate with your smart card reader correctly in both 32 bit and 64 bit Windows. It is written in .Net which meant lots of P/Invoke calls to the Microsoft Smartcard API’s to access the PC/SC reader hardware."; 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 = ''; } }