var fDesc=new Array();
fDesc[1] = "your Nokia Phone to interact with your PC, opening the Internet world at your hands, so you could manage the games, the music, the ringtones and photos.";
fDesc[2] = "greatest selection of games and limits: Texas Hold'em, Omaha, 7 Card Stud. Now over 17 million players. Download PartyPoker now!";
fDesc[3] = "frequent disk defragmenting at your hands. This software will also improve the performance of your computer. InvisiTasking in Diskeeper 2009 13.0 lets you keep your system hard drive defragged all the time without using any active resources of the system.";
fDesc[4] = "extremely fun and challenging. There is more to winning than having a better army, I think. You have to keep an eye on many things so that your country is the best and survives each campaign.";
fDesc[5] = "with according to their interest. The first option is Challenge; the player will have to complete the required poker hands displayed in the box of the screen before the cards run out. The player will receive an extra bonus for each card and time remaining.";
fDesc[6] = "blocks of the same color together. There is also a \"Supa Weapon\" available which can be used when it's fully charged.Each time we fill up our Brick-o-Meter we will get to the next stage.";
fDesc[7] = "Frostcrag Spire in the game. A powerful mage lives there, and he entrusts it to the player's presumably capable hands. It provides everything a warrior could need: altars for summoning familiars and creating spells and enchanted items, and more.";
fDesc[8] = "a great simulation game that allows you to play a single game or a party mode. Challenge a friend and have a great shooting emotion.";
fDesc[9] = "allows you to play twelve poker hands at once. 5-Card Slingo offers three different game modes, to choose the one that suits your level and rhythm. Moreover, 5-Card Slingo offers an attractive graphics and cool sound effects.";
fDesc[10] = "seeds, water them and the flowers will shoot up in an instant. Don't forget to kill the bugs and to pull up the weeds, but you don't need green fingers and you won't get your hands dirty!";
fDesc[11] = "Poker Pop you will be playing your way around the globe. You’ll be at fifty cities in five different countries, collecting postcards and souvenirs along the way. Have a good trip!";
fDesc[12] = "odds calculator, providing you with the odds and recommendations while you play, in real-time";
fDesc[13] = "enjoying the rain in summer with his hands stretched upwards, a rainbow displaying all colors of life and a clock which keeps you always alert and shows you correct time. The clock has roman numerals with decorated hands.";
fDesc[14] = "sites. Players are also allowed to track their movements in the game. Players can see graphically an entire session or even a tournament.";
fDesc[15] = "computer. When the PC goes idle, your screen starts to distort and to produce some eerie noises. All of a sudden, you see the screen shining and light coming out of it. In that moment a pair of hands appear and start hitting the screen FROM THE INSIDE!";
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 = '...';
}
}