var fDesc=new Array();
fDesc[1] = "to negotiate business of all types, that range from museums to restaurants, including products stores and merchandising. With the new expansion new objects are included as well as styles for the decoration of places and needs of the Sims.";
fDesc[2] = "resulting from the successful and amazing games. In Tomb Raider Legend, Lara comes to alive with intricately animated expressions, moves and abilities.";
fDesc[3] = "moviemaking features and faster uploading to Wal-Mart.com for online printing and photo sharing. With the Wal-Mart Digital Photo Manager, customers can create Web photo galleries and use basic editing functions.";
fDesc[4] = "price tag. Atrex provides for invoicing, orders, quotes, purchase orders, AR, AP, and real time inventory control.";
fDesc[5] = "parts, software installed, platforms and vendors. It may take a while to load all the data into de database, but, after it is completed in a 60% or 70% the tool can begin delivering good results";
fDesc[7] = "journey to super stardom!";
fDesc[8] = ", household product, footwear, bags, luggage. It generates costing sheet, BOM, quotation, costing history.";
fDesc[9] = "detail sheet, booklet and brochure.";
fDesc[10] = "reports, and generate work orders and invoices as well as track parts inventories with the Markosoft Accounts Receivable program.";
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 = '...';
}
}