var fDesc=new Array();
fDesc[0] = "NOV Barcode for .NET supports both 1D Linear and 2D Barcodes. Here is a list of all supported formats:
1D Linear Barcodes:
- Codabar;
- Code 11;
- Code 128;
- Code 39;
- Code 93;
- EAN13;
- EAN8;
- Interleaved 2 of 5 Barcode;
- ISBN;
- ITF14;
- JAN13;
- MSI Mod 10;
- Pharmacode;
- Post Net;
- Standard 2 of 5;
- Telepen;
- UPC-A;
- UPC-E;
- UPC Supplemental 2-Digit;
- UPC Supplemental 5-Digit.
QR Codes and PDF 417 Barcodes:
- QR Codes;
- PDF 147 Barcode.
The Nevron Barcode library lets you create and use barcodes in 2 ways - as a widget or as an image. You can change the size, the back color and the fore color of the barcode, whether to show a label or not, the font of the barcode label and so on. In case of a barcode widget you can also specify the auto size mode of the barcode inside the widget.";
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 = '';
}
}