var fDesc=new Array(); fDesc[0] = "This program allows you to read, create, and use NFC tags using a Windows PC and a compatible NFC reader. The GoToTags Windows App reads the UID, NFC chip type, memory details, etc. from the NFC chip while the NFC tag is on the NFC reader. When the NFC tag is removed from the NFC reader, the NFC chip information is removed. You can also create and edit NDEF records easily."; 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 = ''; } }