var fDesc=new Array();
fDesc[2] = "and effectively.";
fDesc[3] = "Quick Service Restaurants, Deli and Retail Sales. Includes Inventory, Customer Management, General Ledger, Reporting, Multiple Taxes, Discounting and more. Can be used with up to 100 terminals for one low price. Integrated Credit Card Processing option. Use Plexis POS in your business today for Free!";
fDesc[4] = "list, being the perfect solution for your Outlook mail merge needs.";
fDesc[5] = "of handling your front and back operational functions. Doesn?t require much training from your staff. Includes payroll, inventory management, etc...";
fDesc[8] = "digital image type resulting in a needed quality level and minimum size of the final output.";
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 = '...';
}
}