var fDesc=new Array();
fDesc[0] = "Software for All Your Printing Needs All In One Package
- Design and Print high quality business cards, mail & address labels, signs, CD labels, bottle labels, tickets, name badges, id cards and other office related items as you need them.
- Support for any label or card using letter or A4 size paper from Avery®, Staples® or any other manufacturer. Also supports direct CD/DVD printing on Epson, HP, Canon and other printers.
- Use any database. Store data in the built-in address book or link to your own database in Excel, CSV, Access, DBase, Paradox and more.
- Add bar codes, including US postal codes, QR, UPC, EAN, PDF417 and many other standard bar code types.
- Works great on any computer with Windows 8.1/8/7/Vista/XP or later.";
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 = '';
}
}