var fDesc=new Array();
fDesc[3] = ", services and products with customized jigsaw puzzles. Jigs@w Puzzle Promo Creator works as a wizard that helps you to create your own promotional jigsaw puzzle games in a fast and easy way.";
fDesc[4] = "for hours. It features beautiful graphics and sound effects, and pleasant music. The rules of the game are pretty simple. You just need to arrange the blocks by colors following a given pattern to make them disappear from the board.";
fDesc[6] = "robust suite of statistics tools and graphical analysis methods that are easily accessed though a simple interface. Promo price.";
fDesc[8] = "program with all the features you need to successfully run your retail business, including: Windows Vista Compatible Track Customers, Inventory, and Vendors Create Layaways and Invoices Supports 40 column receipt printers/laser printers/ink jet printers Automatically create Purchase Orders based on re-order points Includes over 100 reports, including profit reports, stock reports, best sellers, etc. Supports Promo Pricing, Price Breaks, \"2 Fer\" Pricing Print your own Barcode labels! Create and manage in-store Coupons ... and much more!";
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 = '...';
}
}