var fDesc=new Array();
fDesc[0] = "Discover any ISO-7816 smart card on the APDU level easy!
Smart Card ToolSet PRO is a program for working with any of ISO-7816 compatible smart cards on the APDU level.
The program allows you:
1) to work with any of an ISO-7816 compatible smart cards using T0 and T1 protocols;
2) to use any of PC/SC compatible smart card readers;
3) to manage the readers opening/closing modes;
4) to send single APDU commands manually and monitors the card answers;
5) to scan the smart card using an APDU Scanner;
6) to group the commands to an APDU Batch files;
7) supports the cards types;
8) to work with the COS commands' templates;
9) to work with the SW-codes templates;
10) to expand program functionality by using the third-side's or your own Plug-Ins;
11) to create your own application for working with a smart cards via an ActiveX control and COM+ server of a Smart Card ToolSet PRO;
Research your GSM SIM card, EMV payment card, security card or any other smart card!";
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 = '';
}
}