var fDesc=new Array();
fDesc[0] = "IDAutomation Barcode Label Software is an advanced, easy-to-use, WYSIWYG barcode label printing software application used for printing barcodes, text and graphics on standard laser or inkjet printers, in addition to labels on thermal transfer barcode printers.
Easy-to-use barcode label printing software with WYSIWYG label design interface.
Built-in, embedded database for creating custom values, and lots more.";
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 = '';
}
}