var fDesc=new Array(); fDesc[0] = "bcTester is a Windows application to read barcodes. You open up an image file (tif, jpg, pdf file) and start "Recognize barcode". The software searches for the special characteristics of the barcodes in the image and decodes the content. A linear barcode usually contains rather short information like order numbers. A modern two-dimensional barcode such as Aztec, QR Code, Data Matrix, or PDF417 can encode much more information, e.g. besides the order number also the batch number, date of expiry and weight of a product. The software bcTester recognizes all common barcode types such as EAN13, Code39, Code128 and the 2D codes Aztec, Data Matrix, PDF417 and QR Code. bcTester contains detailed general information on barcodes and various sample images. The product was developed in Hamburg, Germany and is constantly updated."; 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 = ''; } }