var fDesc=new Array(); fDesc[0] = "The HIPAA EDI Viewer /Editor can be used to display and edit the contents of an EDI file that contains transaction sets that are mandated for use under HIPAA. The structure is designed from the ASC X12N Version. 004010 implementation guides with the Addenda applied. Pre-addenda files can be displayed but will be subject to the addenda changes. Because of that, it is possible that some pre-addenda files may not display correctly - this is due to the changes made in the addenda and is not a limitation of the viewer."; 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 = ''; } }