var fDesc=new Array();
fDesc[1] = "that requires text, graphics, or serial numbering. Create and print your project from your desktop in minutes with our easy to use interface.";
fDesc[2] = "necessary. Use plain paper and cut tickets apart yourself or use our pre-perforated paper for a professional appearance.";
fDesc[3] = ", graphics, or serial numbering. Create and print your project from your desktop in minutes with our easy to use interface.";
fDesc[4] = "imported data, serial numbering, text, or graphics. Barcode static and imported data. Works with most desktop, label, ticket and commercial";
fDesc[5] = ", graphics, or serial numbering. Create and print your project from your desktop in minutes with our easy to use interface.";
fDesc[6] = "means of reserving seats and selling tickets. The program includes a customer database, report generation, and inventory control.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}