var fDesc=new Array();
fDesc[1] = "The base is attacked by the air forces of the enemy. The enemy troops are landed periodically.";
fDesc[2] = "money by making your inkjet cartridges last longer, up to 400%.";
fDesc[3] = "disks, floppy disks, PCMCIA-attached digital camera cartridges, smartmedia, compactflashs and memory sticks that have been lost due to accidental deletion or format, system crash, virus damage, power failure and much more.";
fDesc[4] = "cartridges. GGPO can be added to existing games to provide network gameplay support to the old consoles´ games. The program uses a peer-to-peer topology to run a complete copy of any available game for each player, transmitting controller inputs over the network to keep these copies synchronized.";
fDesc[5] = "control a remote printer. Remote Queue Manager allows you to visually preview documents in the spool.";
fDesc[6] = "you.";
fDesc[7] = "hard disks, flash drives, digital cameras, diskettes, ZIP cartridges, CDs and other types of media. This incredible application reads files stored on damaged media and saves them to a safe user-specified location.";
fDesc[8] = "printer. Remote Queue Manager allows you to visually preview documents in the spool.";
fDesc[9] = "food recipes from the Internet? Eliminate unnecessary expenses by installing Print Censor and setting individual printing quotas.";
fDesc[10] = "virtual printer with extended features, like watermark stamping, poster printing, real printer preview and much more. 100% FREE to download and try.";
fDesc[11] = "media.";
fDesc[12] = "analyse your traffic (including number of bytes transmitted, date etc) and also how many pages were printed on your printer.";
fDesc[13] = "gathering software system for large organizations, printing businesses and internet cafes.";
fDesc[15] = "on multiple tape cartridges, CDs, ZIP diskettes, floppy disks, or be sent by email. Pieces can be joined without the need for TurboSplit.";
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 = '...';
}
}