var fDesc=new Array();
fDesc[0] = "Barcode Label ActiveX is an OCX control for software developers and for software authors that can make a barcode image directly from your program.
Features:
-Barcode Label ActiveX (OCX) Control.
-Ready, runs fast and easy to the use.
-Support code 39.
-Support code 128.
-Support code 2/5.
-Copy the barcode to memory.
-Save the barcode to a bmp file.
-Print the barcode with the printer.
-Error handling.
-Many events.
-VB 6 and VB.NET samples.
-CHM help file.";
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 = '';
}
}