var fDesc=new Array();
fDesc[1] = "case comes up and you are ready to get to the end of it. Your mission is to investigate who is the killer of Miss Linnete Doyle, another passenger of the cruiser. Twelve levels will lead you to the truth, gathering clues on each investigation.";
fDesc[2] = "storyline, which makes it really attractive. It is a strategy game which storyline develops in real-time mode. Players have to choose among twelve different civilizations from the Middle Ages , to make them rise and advance towards the conquest of the whole world.";
fDesc[3] = ", with a user.friendly interface and top quality graphics and animations. 123 Solitaire has a freeware license, however there are some basic actions that are restricted.";
fDesc[4] = "from but as you win races you will be unlocking the rest of the twelve cars available. There are also fifteen race tracks with different difficulty levels.";
fDesc[5] = ", and there you´ll go. Some cars and tracks are locked till you run some races, after that you will be able to choose between twelve cars and fifteen tracks. You will be running facing different weather conditions.";
fDesc[6] = "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[7] = "will guarantee fun for your free hours. In this collection you will find Spider, Free Cell, Tri Peaks, Montecarlo, Forty Thieves and more, totally free of charge.";
fDesc[8] = "four caves with twelve levels each, all more or less the same, with different levels of difficulty, and exciting bonus levels. It features a nice background music and cool graphics.";
fDesc[9] = "collection consists of twelve different card games, which includes the classic Klondike Solitaire, Raglan, Somerset, King Albert, Harp, Gargantua and more.";
fDesc[10] = "surely also know that this planet is the number twelve in the solar system. What you probably do not know is that according to ancient Sumerian people, our planet formed part of Niburu.";
fDesc[11] = "the current date. It allows to have always a calendar at hand to search for any in the current, previous, or future year. The program features a simple and intuitive user interface, but really not very attractive.";
fDesc[12] = "can upgrade their ships with almost 20 devices. Many weapons provide accuracy and fun. Twelve masters of destruction have to be defeated while progressing in the game's gruesome levels.";
fDesc[13] = ", but it’s different from others games alike since it has twelve-in-one solitaire games which is great in order not to get bored any soon. All twelve solitaire games offer a thorough explanation of how to play in the beginning.";
fDesc[14] = "Battlestar Galactica already has, at last, a game in which you will be a pilot of the fighter fleet in its fight for survival against the Cylon.";
fDesc[15] = "software. This program enables you to have one page with all twelve months on it and then a page for each month. The software not only creates a calendar, but it also allows you to put in several notes for each day.";
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 = '...';
}
}