var fDesc=new Array();
fDesc[1] = "300 layouts, all distinctly original, ranging from super easy to extremely challenging. Mah Jong Medley has 4 game modes to choose from.";
fDesc[2] = "from the screen in the fewest possible moves? A new hint power-up is on hand to help, but only those with strategic sense and careful clicks will be labeled a Puzzle Genius.";
fDesc[3] = "recover that part of your childhood, playing with this great collection of board games. They have been put together under the name of Bicycle Board Games. All the games included here are great board entertainment games classic";
fDesc[4] = "No more \"start button\" presses! Shoot again and again through 9 missions and 47 levels in 5 different worlds. Fight against smart alien armadas and kill mission bosses till your flippers are broken, till aliens have destroyed your starship or till you win... Strike back the INVASION! Save the Universe!";
fDesc[6] = "and put them together. Top level challenging mix of Jigsaw, Slider and Rubik's Cube right on your desktop.";
fDesc[7] = ", improved artificial intelligence, 4 new opponents, and optimization for Windows Vista. Imagine Poker version 3 welcomes Genghis Khan, the Grim Reaper, Marie Antoinette, and the Aussie legend, Ned Kelly!Play Texas Hold 'Em Poker on your PC against 20 beautiful and fully animated characters that include Cleopatra, Julius Caesar, Napoleon, Genghis Khan, Dracula, the Mona Lisa, Abraham Lincoln, the Tooth Fairy, Stalin, Robin Hood, Blackbeard, Merlin, and 8 more! Even the Abominable Snowman traveled all the way from Kathmandu to participate in the Imagine Poker tournament!Configure your Texas Hold 'Em game with any rules and settings you like and then enter a five round tournament where you must beat all 20 characters to win! Imagine Poker features Candywriter's acclaimed artificial intelligence module that is sure to challenge even poker professionals.Create a profile from scratch and...";
fDesc[8] = "styled graphics, fun music and sounds. Take your coffee break with this perfection of the puzzle genre.";
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 = '...';
}
}