var fDesc=new Array(); fDesc[0] = "SEFViewer is a utility which allow to developer to view the structure of the EDI SEF standard description file. Currently SEFViewer supports following EDI standards:

X12
UN/EDIFACT
EANCOM
ODETTE
UCS
VICS

As well as EDI envelope description.

SEFViewer is fully compatible with current EDI SEF standard provided by the Foresight Corporation (current version 1.6) and may read any SEF file, not actually belongs to the standards above.

Underlying application database contains the descriptions for all the messages/transactions, segments, fields and codes."; 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 = ''; } }