var fDesc=new Array();
fDesc[1] = "possibility to arrange you icons in the style the program offers, you can create your own layouts and save them. Also the icons' text or the icons themselves can be set to be hidden when we go off the desktop (or when the focus is on another window).";
fDesc[2] = ", but be careful not to loose your quality of service or you will be loosing customers as well. Enjoy this great salon simulator game.";
fDesc[3] = "like Bridge, Hearts and Gin Runny to family games like Crazy Eights and Old Maid. It also includes fifty different Solitaire games. Many of the games can be played with Hoyle computer players, and some games can be played with several people in front of your computer.";
fDesc[4] = "stabs and cords. Each level will have more and more evil creatures. While you run in the cemetery, pick up the weapons to fight those creatures and also pick up the hearts that will restore your vital energy or will give you extra lifes.";
fDesc[5] = "moments together. The screensaver will show you two hearts filled with Love, Passion, Romance, and many other feelings related to this great day.";
fDesc[6] = "improves in almost every aspect from its predecessor. You control almost every detail of a nation during the years of the WW2. The game is excellent for all those grand war game aficionados. However, the normal gamer may find things a bit overwhelming.";
fDesc[7] = "unleashing his evil on the world by overcoming the threat of his minions and rescuing the hearts of those who have failed the same quest previously, to win the game.";
fDesc[8] = "energetic girl finds a job advertisement as a server in a juice bar and without second thoughts decides to call. Before even noticing it she’s working at the Golden Hearts. The whole idea of the game is to serve customers as soon as possible and make the most money you can.";
fDesc[9] = "the story would go next. In this game, players have to choose their own adventure and the choice they make will affect for sure how the game ends.";
fDesc[10] = "game will let you feel yourself a real master of hearts. But be attentive and not let them beat you. Have a happy Valentine's Day!";
fDesc[11] = "to express your love to that special person in your life. This is not something that will be kept in a drawer and very seldom enjoyed. The screensaver will show several hearts floating like balloons and each with its own message or word, or a group of them to form a longer phrase.";
fDesc[12] = "queen of spades. Needs the Tams11 Lobby from www.tams.com for online play.";
fDesc[13] = "your skills! Beginners will enjoy hint, undo, replay, and other practice features along with the introductory Hearts tutorial. Expert p...";
fDesc[14] = "you master your skills. Now you can challenge the computer, engage your friends over a local network, or compete and chat in our free Internet lobby. Beginners will enjoy hint, undo, replay, skins, and tutorials, while advanced players will be amazed at how the opponents adapt and use advanced strategy and conventions.";
fDesc[15] = "Beginners will enjoy hint, undo, replay, and other practice features along with the introductory Hearts tutorial. Exper...";
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 = '...';
}
}