var fDesc=new Array();
fDesc[0] = "nameXpdf takes image output (.jpg, .gif, .tif, ....) and automatically generates PDF file and name the PDF file by the contents of a barcode.
nameXpdf can be used for Work Orders, Shipping Documents, Purchase Orders, Invoices, Check Stubs or any other document that could be searched for by a reference number (barcode) and needs to be batch processed.
Main Features:
- Reads Code 39, EAN, and Code 128 Barcode,
- Reads two barcodes for structured filling (only pro version),
- Creates pdf from any type of image (jpg, tif, ...) named with containg barcode,
- Uses smart manual renaming,
- Creates pdf files from image any size to any ISO standar paper size (great for blueprints),";
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 = '';
}
}