var fDesc=new Array(); fDesc[0] = "Smart Card Scripter is a tool that makes it easy to send APDUs to smart cards and to process the responses. Smart Card Scripter contains a large number of built-in commands, especially cryptographic commands which are useful for authentication and encrypted communication. Smart Card Scripter uses a Pascal-like script syntax. Rudimental Pascal knowledge is required to use this tool as well as basic knowledge about smart cards. The tool installs a couple of sample scripts that demonstrate the script-syntax."; 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 = ''; } }