var fDesc=new Array();
fDesc[0] = "Read-a-Card is a software utility for reading ID data from most contactless RFID cards, proximity tokens and tags.
Main features:
- View a contactless smartcard’s unique ID and automatically insert it into text input fields.
- Insert a custom prefix and suffix when performing RFID ‘keyboard wedge’ functions.
- Read and display MIFARE card serial numbers (CSN) in hex and decimal formats.
- Read HID iClass & Prox card IDs, with appropriate readers.";
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 = '';
}
}