var fDesc=new Array();
fDesc[0] = "HL7KitPro is an interface engine and interface design tool for HL7 messaging. Use HL7KitPro to define and implement HL7 interfaces with no programming, simply using drag-and-drop to map the attributes. HL7Kit Pro includes four applications: HL7Sender is a HL7 message editor that can send messages, HL7Receiver is a GUI HL7 Listener, HL7Mapper is a GUI interface design tool, HL7Service is a background process HL7.";
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 = '';
}
}