var fDesc=new Array();
fDesc[1] = "previous game, but with a very different major character, Belial, who is a demon and your mission will be to swallow your enemies souls. This time, the scenarios will be from the ancient Egypt, the American Civil war and other historical events.";
fDesc[2] = ", living pumpkins and witches. This is surely not another one of those boring Halloween screensavers that only show a strange looking pumpkin standing motionless somewhere. This amazing screensaver will show you many of those dreadful characters that used to frighten us in the past.";
fDesc[3] = "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[4] = "typical Halloween characters doing different things on your screen. Watch a skeleton hanging from the roof. Watch a witch flying on her magic broom. And don't forget the Ghosts. They are everywhere!";
fDesc[5] = "need to use your mouse to move Dora and Pegasus, her flying horse, through the forest to collect the Snow Princess's magic snowflakes.";
fDesc[6] = "trip to a mysterious place where a haunted mansion rests. Witches, skeletons, bats, ghosts. You name it. You will be able to see Jack O' Lanterns dancing at the entrance of the house, grinning and laughing as they move around.";
fDesc[7] = "some of the classic Halloween characters. You will see witches flying and mixing their magic brews, skeletons of many kinds, bats flying around you and lots more.";
fDesc[8] = "fairy magic to defeat witches, goblins and other evil creatures, which have invaded the lands of Feyruna.";
fDesc[9] = "pumpkins, flying witches, and scary bats flying around, among others. Every once in a while, the scene changes so it won't bore you too soon. Funny Halloween includes an extra feature: free Halloween wallpapers to decorate your desktop.";
fDesc[10] = "Frankenstein, the Grim Reeper and skeletons. Witches and bats fly by in front of a full moon. A hangman swings from a tree";
fDesc[12] = "with Halloween scenes and effects. The horrifying effects which are presented on the screen bring about the accurate atmosphere of the Halloween holiday.";
fDesc[13] = "very terrific background.";
fDesc[14] = "Halloween scenes (haunted house, abandoned cemetery, swamps of death, witches? caverns) AND a major Halloween surprise!";
fDesc[15] = "is an original puzzle game, that introduces a different gameplay, requires strategy and logic, and provides more action and excitement.";
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 = '...';
}
}