var fDesc=new Array();
fDesc[1] = "offers Deposit bonus 100% up to $600 and have a number of world-class poker pro endorsers, such as Howard Lederer, Chris Ferguson, Phil Ivey, ..";
fDesc[2] = "cursor movement keys: left and right will turn the wheel, up will accelerate the motorcycle, down will diminish the speed.";
fDesc[3] = "themes - Rich graphics artwork - 6 episodes with something new on each one - Post your personal scores to Internet";
fDesc[6] = "Excel and want to enter a date, you just press on the calendar, select the data you want to add, and it is automatically added.";
fDesc[8] = "program also includes some extras and a reloader, which you can use after visiting Windows Update. As of July 14th, 2008, the project has been discontinued, as you can read in its page.";
fDesc[11] = "and night and fireworks, this screen saver could be of your like. Beautiful tall skyscrapers in front of the scene, and rising from behind amazing and colorful fireworks blowing away, decorating the deep black sky and the nice and sweet moon on the side.";
fDesc[12] = "continuously aired storm warnings to the community, have developed a weather alert program, the 10-11 Web Alert, that you can download free of charge, which will warn you about serious weather threats approaching.";
fDesc[14] = "disappeared in the forest! Complete the solitaire and help the couple find their beloved puppy in a winter forest";
fDesc[15] = "called the 4th of July, is a federal holiday celebrating the adoption of the Declaration of Independence on 4 July 1776. Important ...";
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 = '...';
}
}