var fDesc=new Array();
fDesc[1] = "for instance, games, chat applications in webpages, image visualization, among others, that were written with the Java scripting language.";
fDesc[2] = ", Casino, Arcade, etc. All you have to do is choose your game, download it and start playing! Besides, RealArcade helps you to easily access games installed in your PC. Download RealArcade and enjoy playing for hours.";
fDesc[3] = "gain points. You will have to make a word from more than three or three letters. You can make a word by selecting letters horizontally, vertically or diagonally even - but the rule is not to leave a letter (you cannot skip a letter).";
fDesc[4] = "reveal beautiful photographs. You can also download more images or add your own. You will be given puzzle pieces on a loading dock and you must click to use them into the car one at a time without leaving any gaps.";
fDesc[5] = "greatest selection of games and limits: Texas Hold'em, Omaha, 7 Card Stud. Now over 17 million players. Download PartyPoker now!";
fDesc[6] = "You will have a board full of colored gems. You need to swap identical gems .Swap adjacent gems to make sets of three. If you have the option of swapping four gems that will create a power gem that, when swapping it too, will give you extra points.";
fDesc[7] = "button bashing and combat is that of an arcade fighting game. The 2D environments blend nicely with the game-play and it does make a good combination. This game is not for everyone but it's free, so you can try it without problems.";
fDesc[8] = "the game, we are in a Pool or Snooker room, with a game table playing against another user. The high quality 3D graphics are excellent, and we can go around the table in 360 degrees.";
fDesc[9] = "games without paying any subscription. QQ Games is an official plugin for Aol Instant Messenger and it offers a wide collection of online casual games that are totally multiplayer and free.";
fDesc[10] = "not just limited to voice changing, but it is also optimized for online gaming and it may be even used for playing pranks with friends via VoIP and instant messages as well.";
fDesc[11] = "OKEY, Ludo, Bridge Rubber, Duplicate Bridge, Sergeant Major (3-5-8), Backgammon, Backgammon - Tapa, Backgammon - Gul bara and Dominoes. They can be played against the computer, and via Internet against real opponents.";
fDesc[12] = "popular games of a land-based casino, but comfortably from home, at any moment. Party Casino features thirty nine different games, including all the classic card and board games, as well as original slot machines and more.";
fDesc[13] = "of casino games directly from their homes. Among the popular games, players will find table games like Blackjack, Craps, Baccarat, Mulligan Poker, among others.";
fDesc[14] = "kinds of video games, from classic arcade games to the newest PC hits. It is the perfect software for all gamers, since you can play the games in its original format, right in the Game Tap window.";
fDesc[15] = "table and card games like Baccarat, Blackjack, Casino War, as well as three types of roulettes and more than 30 slots machines, including the classic reel slots, multi line slots and original multi spin slots.";
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 = '...';
}
}