var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to create barcodes for products. There are options for the following types of barcode: Code 128, Code 39, UPC-A or UPC-E. The user simply enters the text (product name or description) to be barcoded. There are some formatting options available such as adding text captions to barcodes, alignment and style. The generated barcodes can be saved as a JPG image or can be printed. Sample barcodes are included with the software as an aid to new users. With this software, you can generate multiple barcodes in a relatively short period of time."; 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 = ''; } }