var fDesc=new Array();
fDesc[1] = "is a small town. By day it´s a quaint village full of sunshine and banter, by night a place haunted by hoof beats and spectral laughter.";
fDesc[2] = "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[3] = "a strange and mysterious place in the middle of a dark forest. You will find a very weird house, maybe an abandoned mansion of some sort. Who lived there? Or who lives there now? Or maybe, what lives there?";
fDesc[4] = "potions to magical creatures in a tavern in the world of fairies. However, you will soon discover that the tavern is haunted, and you can not leave unfinished any of the shifts. Now you must respond quickly to all customers, if you want to be able to leave the tavern.";
fDesc[5] = "taken the case of the mystery surrounding a Hotel, The Lonely Star, and discovered that the mystery is deeper than he had thought in the first place. No one can escape from the hotel until its mysteries are unveiled.";
fDesc[6] = "the introduction to the story behind this house. You will learn about the family that used to live in the house. A perfectly normal and happy family. And, suddenly, the people from the town started asking about them, since they haven't been around for a while.";
fDesc[7] = "stuff like that. This tool could be a good idea to bring to your PC some fear excitement and entertainment. With a deep black sky as a background and a creepy old house this screen saver starts scaring you. A couple of seconds later, some scaring noises complete the experience.";
fDesc[8] = "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[9] = "the driver walks in the middle of the night to a hotel, which is completely desert, or actually that is what it looks like. He is looking for help, and in the hotel strange things happen.";
fDesc[10] = "something going on inside as you see sparks of magic fire shooting out of the chimney. Are you brave enough to trick or treat around this place?";
fDesc[11] = "approach, you are welcomed by a sign, which surely makes your spine tingle. As you enter the estate, you will find an old crypt. You can even see some light inside!";
fDesc[12] = "screen with creepy skeletons, mummies, flying ghosts and pumpkins. Moreover, the horrifying sounds and screams bring a frightening effect.";
fDesc[13] = "Haunted Mansion, in the middle of nowhere. You will be able to see a very ancient house that will surely start your feelings flying. You will remember all your childhood fears, and the present ones too.";
fDesc[14] = "faces turning into skulls before your eyes and an empty grave in the hall with a stone make your blood creep. This ominous place is waiting for you!";
fDesc[15] = "house... This game plunges you into the weird and spooky world of the paranormal! Can you and your friends get out alive? The Haunted House is a game by Canadian author 6claudia6. Originally published in French, Apok Studios now publishes and updates the English version of the game.";
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 = '...';
}
}