var fDesc=new Array();
fDesc[1] = "by the famous Pat Sajak. The show is a questions&answers contest, related of course with words and letters. On the main menu you’ll see three podiums located on the TV studio. Each of the podiums represent a different game you can play.";
fDesc[2] = "engaging games. Download Smart Cook and Play for Free!";
fDesc[3] = "files 6 ways. Replace text in multiple files. Index files to find a word on your hard drive in less than a second! Zip found files.";
fDesc[4] = "promotions going on only at All Slots.";
fDesc[5] = "creatures, including small fish and large sharks. Your objective is to catch as much fish as time allows you. Join your counterparts!";
fDesc[6] = "always tend to forget. Its excellence has been proven as it has been honored with an award. The software provides various features like storing repeating events that can be recurring daily, weekly, yearly.";
fDesc[7] = "challenge. Find the figures and collect prizes to fill up your pot of gold before time is up. Solve each level and increase your challenge with Lucky Clover.";
fDesc[8] = ", among them the classic board and card games you will find: Blackjack, Baccarat, Caribbean Stud, Craps, Pai Gow Poker, Roulette, Let Em Ride, Video pokers: Jacks or Better, Deuces Wild, Bonus, Deuces Wild, Joker Poker, the latest slot machines and many others.";
fDesc[9] = "Easy to install, the game has a bright oriental themed interface and symbols, and oriental music plays as soon as the game is launched.";
fDesc[11] = "there are different items, such as bells, horse shoes, hearts, and many more. Under this items we have transparent squares. If we make a match of three or more similar items, the squares under the matched items will turn to blue. The aim of the game is to turn the whole game board blue.";
fDesc[12] = "drawing great poker hands! Keep your eye on the Luckometer to see how lucky you are! Runs great on virtually any computer!";
fDesc[13] = "noticed that many wins occurred under certain \"shapes\" in a person's planetary transits impinging their natal planet positions. This software identifies lucky periods in your life based on a certain repeating shape in your daily planetary transits.";
fDesc[14] = "game together with your friend. This makes the game more interesting to play. It's a must-have for a whole family.";
fDesc[15] = "with an island in the middle. And on the island, as a vigilant statue vibrant with life, stands the old oak tree. People say that only on this night, the tree will grant wishes to everyone that walks beneath its branches.";
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 = '...';
}
}