var fDesc=new Array();
fDesc[0] = "PCLWorks Program is the ideal solution for viewing, debugging and converting today's complex PCL3 thru PCL6/XL print streams. Quickly and easily convert PCL to JBIG2 compressed raster or vector/text PDF and PDF/A files, as well as PCL to BMP, EMF, JPG PCX, PMF, PNG, PWG, PCLm, TIF, WMF, and XPS formats. PCLWorks is the most powerful converter of PCL3 thru PCL6/XL on the market today - including HPGL/2.
PCLWorks not only converts PCL, it allows end-users to view, edit, disassemble, debug, extract text and print PCL to any Windows printer. PageTech is the first company to convert PCL to PDF/A format and we just added PCL to PWG (Printer Working Group) and HP's PCLm mobile conversion formats in this release.";
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 = '';
}
}