var fDesc=new Array();
fDesc[0] = "A-PDF Batch Print is a tool designed to batch print documents to any printer device that is accessible through the Windows operating system automatically.
Main Features:
- Support optionally specify a range of pages to print.
- Support Separator printing dynamically generated or from a static file.
- List order organizing options.
- Drag and Drop support of files, add document by folders.";
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 = '';
}
}