var fDesc=new Array(); fDesc[0] = "This program helps you decode and edit TAP files of all versions. The editor does not only decode and edit TAP files content, it can also re-encode them to their initial ASN.1 BER format when you are done with the changes you wanted to apply to the files. It recalculates the total values in audit control when it decodes or re-encodes a file that has been modified. The mismatch between the decoded and recalculated values is reported."; 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 = ''; } }