var fDesc=new Array();
fDesc[1] = "a world of mystery and fantasy. You will be transported to a very small room, who knows exactly where. Who can live here? This is not a place for a “common” person.";
fDesc[2] = "enjoy one of the nicest scenes of the Christmas season. You will be able to sit down on your favorite couch and just relax and enjoy watching a beautifully decorated living room. You will see a very beautiful, and of course, decorated fireplace.";
fDesc[3] = "to set your own options and difficulty levels. You can choose the number of pieces yo want, the shape of the pieces, and images.";
fDesc[4] = "makes things interesting with a variety of power-ups to collect, and 4 modes of play: Happy Fields - A series of 20 predefined levels, beat them all, and you win! Play alone or 2 players cooperatively. Dank Dungeons - An infinite number of randomly generated levels, each bigger than the last, and more dangerous. Survive as long as you can. Play alone or 2 players cooperatively. Sibling Rivalry - In random levels or the Happy Fields levels, compete best 2 out of 3 with an opponent to see who can collect the most candles. Power Ups give you ways to outdo your opponent, or even squish him with a glance with the Evil Eye. 2 Players only. Time Attack - Play any of the Happy Fields levels, or the first 20 Dank Dungeons levels, trying to get a record time. You have unlimited lives, but there's a time penalty for getting hit. 1 Player only.";
fDesc[5] = "beautiful, Old World look-and-feel. Free version is fully functional, with no registration required. More features in full version.";
fDesc[6] = "twist, since it uses Christmas-related icons instead of the traditional 1-9 digits. The rules are the same as with the traditional Sudoku, but the use of images makes it more attractive for children and players who want a lighter version of the puzzle.";
fDesc[7] = "snowflakes float around the lovingly created figures under the dome as the light of three candles illuminates the scene.";
fDesc[8] = "and year. Calculate amperage, wattage, foot candles, much more.";
fDesc[9] = "weapons, endless puzzles, and brains and candles you'll need to collect. Includes a level editor and over 150 bonuses to unlock!";
fDesc[10] = ", ever- changing holiday illustrations. Christmas trees, gifts, holly, bells, candles, snowflakes, wreaths, poinsettias, ornaments, stockings.";
fDesc[11] = "christmas, the second three weeks before and so on.";
fDesc[12] = "do you see while looking on your desktop with this cool 3D screensaver? At first sight it causes a feeling of fear, doesn't it?";
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 = '...';
}
}