var fDesc=new Array();
fDesc[0] = "HPM has been built for client 29 with enhanced reconnect logic.
For users with Print Servers or Host printers attached to a workstation - Host Print Manager (HPM) has been updated with new features.
Itinerary/Invoice, Hardcopy, Multi-function and Boarding Pass printers can be configured to send host documents to a Windows printer (local or network).
HPM can now be installed as an Application or as a Service.";
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 = '';
}
}