var fDesc=new Array();
fDesc[0] = "ParseIT is a parser tool to analyze transactional messages from raw data and logs. ParseIT provides a simple and effective way to fast parse and compare messages. The intuitive interface provides quick access to the fields of the message, their value and their description. Some key features are:
1) Friendly interface.
2) Ready to use message format configuration file for Visanet, Banknet, SPDH, etc.
3) Message format configuration file can be easily edited to handle any message format.
4) Show parsing errors.
5) Compare two messages.
It supports ISO 8583 with one, two or three bitmaps, ISO 7816 (EMV), SPDH and derivatives, HEX, ASCII, BCD or EBCDIC format, LVAR, LLVAR and LLLVAR variable fields, TLV fields, Complex fields and sub-fields structures, multiple messages formats versions.";
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 = '';
}
}