var fDesc=new Array();
fDesc[0] = "docuPrinter SDK is a software development tool that can be used by developers and programmers to control docuPrinter LT, Pro or TSE and programmatically create PDF or Image files from their own applications.
Features:
- Create PDF, EPS, PostScript, TEXT, JPEG, TIFF, PNG, PCX, BMP, PSD and PCL-X files from any Windows application that supports printing.
- 40/128 bits PDF encryption (security) support.
- PDF linearization (fast web view) support.
- Font embedding, resolution and image compression support.
- Apply stationery and watermark.
- Customize the docuPrinter LT, Pro and TSE user interface.
- Multi-language support.
- Combine (merge) multiple documents into a single PDF file.
- Combine (merge) multiple documents into a single TIFF file.";
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 = '';
}
}