var fDesc=new Array();
fDesc[1] = ", those Konami games that were originated by the game Donkey Kong. In this game you need to go through a lot of screens, avoiding dangers and enemies, and collecting gold coins, till you finish your mission.";
fDesc[3] = "a lot, and easily. In this case, the game has little to nothing to do with the Tom Clancy world. You are given hints that you are indeed in the timeline portrayed in several other TC games, but that is it.";
fDesc[8] = "is a convenient program with a beautiful and intuitive interface that eases coping, transferring, searching of audio files and other things.";
fDesc[9] = "channels include the ITV - UK, ESPN -US, RIO and porn. Ability to pause/resume live TV.";
fDesc[11] = "multiplayers on an ultra realistic sea modelled. There are 14 different ocean water courses and competitions such as Valencia, Auckland, Rio, Marseille, etcetera. Players can choose the boat or create their own regattas. You need to consider wind and weather conditions to sail.";
fDesc[12] = "let the rhythm flow from one song to the next. You can burn your custom mix to CD, or export it to an iPod or similar player.";
fDesc[15] = "circuit as a new protégé who will play against the top poker players and qualify for the winner takes all, invitation only, Tournament of Champions at the Rio Resort in Las Vegas f";
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 = '...';
}
}