var fDesc=new Array();
fDesc[0] = "IPDS Print Server can turn any Windows printer into an AFP/IPDS printer.
Main features:
- Spool IBM iSeries/zSeries IPDS data to your Windows environment replacing IPDS printers.
- Support emulation of common IBM IPDS and SCS printers.
- Support for all IPDS data including overlays, colors, graphics, bar codes, page segments, font handling etc.
- Eliminate the expense of a dedicated host AFP/IPDS printer.
- Support for IPDS printing network.
- Configuration Wizard for quicker and easier setup.
- Configuration via software control panel.
- Support for traditional coax or twinax printing.";
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 = '';
}
}