var fDesc=new Array();
fDesc[1] = "devices and their controllers. Once finished, it indicates which drivers count with a new version. it automatically connects to the Internet looking for the upgrades for each of those drivers";
fDesc[2] = "any photo, edit it and animate it using effective and easy tools. You can create animated pictures, screensavers, banners and buttons in no time.";
fDesc[3] = "to do the driving while you count your cash. You're not only a trucker, you're a tycoon.";
fDesc[4] = "TimeLeft is attractive, easy to use and highly configurable. Watching seconds ticking away makes some glad event so much closer";
fDesc[5] = "This title is inspired by the tabletop war game Warhammer Fantasy Battle. The story follows two different strands, each with its heroes and events, one follows the Empire and Elven Forces and the other the Hordes of Chaos and Skaven forces.";
fDesc[6] = "Baudelaire (Violet, Klaus and Sunny) and their friends will have to fight against Count Olaf to stop his dastardly deeds through different worlds This puzzle game can be played in two modes: Swap Monster for younger players, and Deduction Junction for older kids";
fDesc[7] = "suspicious items and clues from different stages, discover how to use them in order to solve the mystery and clean your name.";
fDesc[8] = "any two dates, date X days from any date. Apointment reminder.";
fDesc[9] = "internet connection. It counts downloaded and uploaded data and reminds you when you reach your maximum limit. It runs in background mode and starts automatically when your system starts.";
fDesc[10] = "Supports .DOC, .RTF, .XLS, .PPT, .PPS, .HTM, .CSV, .PDF, .TXT, .ZIP.";
fDesc[11] = "in your clipboard. The program is useful for writers and magazine editors that are required to write a determined number of characters and lines.";
fDesc[12] = ", characters and paragraphs within their blog entry inside Live Writer. It is a useful tool for writers who are payed on per word basis and for the curious.";
fDesc[13] = "neat layout interface. Each timer can be used to count up, count down or can be used in alarm clock mode. It can count up to 1000 hours. The application is fully drag and drop supported and it allows you to pause and resume the timers.";
fDesc[14] = "Tetris gameplay, with a cool interface, and the chance to play with a friend simultaneously to see who gets a higher place on the online scores.";
fDesc[15] = "clicks.";
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 = '...';
}
}