var fDesc=new Array();
fDesc[1] = "program will search your computer for available images, to create a catalog. Once finished, it will show you thumbnails from the included images, when you choose the \"View\" tab. In this section you can choose the pictures you want to work on, by clicking on them.";
fDesc[2] = "Bank Reconciliation.";
fDesc[3] = ", Inventory, Purchase Orders, Sales Orders and Quotes, Sales Analysis, and Bank Reconciliation.";
fDesc[4] = "price tag. Atrex provides for invoicing, orders, quotes, purchase orders, AR, AP, and real time inventory control.";
fDesc[5] = "listings appear on eBay. It gives you the chance to be first to grab wholesale lots when they are listed!";
fDesc[8] = ", statistics and a messaging system that will connect you to any user of the system. It's easy-to-use and it really helps you to buy and sell!";
fDesc[9] = "system: General Ledger, Accounts Payable, Accounts Receivable, Inventory, Purchase Orders, Sales Orders and Quotes, Manufacturing, and Sales Analysis. Sales orders may be optionally entered as quotes and printed for customer approval. When approved, the status is changed to On Order. Picking slips may be printed for the shipping department. Bills of lading may be printed to go with the shipments. Multiple shipments are allowed per order. Manufacturing orders default to the product standard component items and resources (labour and equipment), which you can then change for substitutions or running on a different machine if one is overbooked, or for manufacturing a custom product. Bills of Materials may be printed for the plant personnel showing the materials and resources to be used. Receipts default using data from the order, so only exceptions require entry, such as unplanned...";
fDesc[10] = ", and sales analysis.";
fDesc[11] = "reports.";
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 = '...';
}
}