var fDesc=new Array();
fDesc[0] = "Create single barcodes, pages of labels, or mail merge documents in Microsoft Word.
Convert cells to barcodes or full sheets of labels directly in Excel. Easily create auto-incrementing barcodes.
Add barcodes to your Access Reports.
Choose from 23 types of barcodes, both linear (1D) and 2D.
If you are a programmer, add barcodes to your application. Compatible with many programming environments, such as .NET, VC++, VB6, VBA, Delphi, and others. Both 32 and 64-bit versions are provided.
Compatible with every version of Microsoft Office from 97 through 2013.";
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 = '';
}
}