var fDesc=new Array();
fDesc[0] = "NFC Port Software installs drivers for RC-S380/S USB NFC reader on Windows PCs. RC-S380/S product is capable of communicating both with devices that conform to the NFC Forum specifications and with various contactless IC cards, including FeliCa and ISO/IEC 14443 Type A / Type B.
NFC Port Software also includes a wizard-based self-diagnostic tool for troubleshooting your NFC 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 = '';
}
}