var fDesc=new Array();
fDesc[1] = "trailers, play demos, read features, join the gaming community and even take part in competitions. The program adds new games and drivers, checks for updates, finds available patches for your games and downloads them immediately.";
fDesc[2] = "the best internet TV shows and videos in one powerful application. New channels arrive daily in the built-in channel guide; it’s an extension of Firefox that have multiple options.";
fDesc[3] = "to place a package and you can rotate it by right clicking. When you place a package, you have to avoid leaving “holes” (spaces of one cell) since they will count against you. You won’t be able to fill them since there are no packages of one cell.";
fDesc[4] = "letters, and instead of creating pairs as in a regular Mah Jong game, here you will have to spell words with the available letters in the board.";
fDesc[5] = "next stage, for example, in the first stage you have get eggs from hens. To get eggs hens must eat grass, and to get grass you have to water the ground. This is the kind of tasks that you have to carry out. In later stages you have to deal with pigs, cows, and many more...";
fDesc[6] = "choice suitable for all ages what makes it ideal for the whole family. Ultimate Dominoes presents five classic domino game variations, from easy to hard, thought to suit beginners and experienced players as well, so you can set the options to suit your skill level.";
fDesc[7] = "Video, MySpace, Daily Motion, Yahoo! Video, Metacafe, etc. offer the possibility of playing videos in Flash Video (FLV) format, as well as the corresponding video URLs to save and later use.";
fDesc[8] = "questions. The answers need not to be correct, but must coincide with a list obtained through a survey taken from a hundred people. The questions are about things you will find in your daily life.";
fDesc[9] = "get Slingos (5 matches in a row). What you see in the screen is a combination of a slot machine and a bingo’s card. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[10] = "different colors and you have to create matches (or groups) of 3 or more pieces in order to clear them from the board. There are three urns you have to fill with the triangles you clear from the board.";
fDesc[11] = "help us organize our daily routines. From the program interface, we can access the following, highly configurable functions: add/edit/delete alarm, view/edit calendar, setup chronoindex, stop watch, configure time zone, select visible timer, and update.";
fDesc[12] = "Pte Ltd. There is a trial version available from the developer’s website. We can select to download it as an exe file or as a zip file. We can evaluate it for 30 days. This software is an alarm clock plus a reminder for Windows.";
fDesc[13] = "gives you the chance of winning lots of money! With nice graphics and animations, this fun and educational game is suitable for all family members.";
fDesc[14] = "play their favorite MP3 or CD track as the alarm sound, guarantying a pleasant morning wake-up. Also, it is absolutely free.";
fDesc[15] = "quebec, Ontario , Uk, Croatian, danish tickets. 8 free wheels on the shareware version";
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 = '...';
}
}