var fDesc=new Array();
fDesc[1] = "lost parts of the powerful crystal. Playing this game is very easy and fun, move with the arrow keys and tab to swim up and reach caves under the surface of the water. Be careful with your enemies and don't let them touch you, some can kill you.";
fDesc[2] = "The full version comes with a set of more than 1000 faces that belong to famous people.";
fDesc[3] = "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[4] = "challenge. Buy strategic items in the Shop, take a chance in the Casino or try your luck in one of the seven Quick Play game modes.";
fDesc[5] = "zagging weapon that is one part skill and two parts luck; Chalk Dust - Calcium bicarbonate has never been so much fun; Mower - Cuts terrain and any nearby tanks down to size; Dive Bomb - Warhead does a bombing run on the other tank.";
fDesc[6] = "forces and destroy all command ships that control the military operations. Download Space Fights and play for free!";
fDesc[7] = "general knowledge. This PC edition of the classic game, dedicated to the 80’s, adds new game modes, and hundreds of questions related to this decade.";
fDesc[8] = "strategy. This game has full color backgrounds making the game visually appealing. The color backgrounds are designed under various themes and categories breaking the monotony of seeing the same application background.";
fDesc[9] = "In this menu we can select the games, and before playing it, we can see some data about the game. The available game data in the main menu is: Time to play (short, medium, long), Difficulty (easy, medium, hard), Win chance (low, medium, high,...), Requirements (luck, skill, ...).";
fDesc[10] = "your pot. Pay close attention to your leprechaun teacher. His advice and your talents may become part of Leprechaun lore.";
fDesc[11] = "and printer Give your mom, friends and family a big smile by creating a greeting card especially for them. Never again buy one of those overpriced, mass produced, commercial greeting cards. No more canned phrases and artwork. Use your own words, sentiment and creativity. Don't chase around after hollow sounding Hallmark cards. Drop in your photos direct from iPhoto or use the graphics we supply. How often do you get to express your feelings for your mom, dad, friends and family? Coming soon --> Christmas - Hanukkah - New Years Birthdays - Anniversaries - Holidays - Get Well - Good Luck - Graduation Weddings - Engagements - New Born Babies - Sympathy - Thank You So many occasions and so many friends and family. How many greeting cards do you buy in a year? FACT: The average US household purchases 35 greeting cards a year from stores! At $5 dollars a card that equals $175. Save money...";
fDesc[12] = "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[13] = "card, but will not substitute the scattered Gold dollar symbols. Each scattered dollar symbol which appears will get you an extra dollar in your Cash Vault. If you happen to get 3 or more of them, you are eligible for Cash Diamond free games.";
fDesc[14] = "proceeds by placing exposed cards from the layout onto the discard pile, provided their face value is one higher or lower than that of the discard pile. Kings tend to block the play as no card can be played upon them. You'll find that good judgment, a keen memory and just the right amount of luck are required to win this solitaire (which doesn't happen all too often!).";
fDesc[15] = "celebrate good news or pray for some luck by touching wood, you will be able to do it right on the screen!";
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 = '...';
}
}