var fDesc=new Array();
fDesc[1] = "Resident Evil is a very successful saga of video games (and movies too). I played Resident Evil 1, 2 and 3 and I really like them. The game was evolving with every release, improving graphics, sound and gameplay.";
fDesc[2] = "developed by TimeGate Studios (instead of Monolith Productions developers of the original F.E.A.R.). Extraction Point requires the original game to be installed and played.";
fDesc[3] = "paranormal storyline from the first game, with new twists. The game's atmosphere is so good, you heart WILL stop while playing it, this is a scary and fun game.";
fDesc[4] = "the game progresses, you realize you have supernatural powers that will assist you in the game and in the storyline. It is a very entertaining and innovative game, and its recommended for all adventure fans.";
fDesc[5] = "detective with paranormal abilities. She can see ghosts and mysterious objects not visible to others. She runs a detective agency specialized in solving paranormal crimes and focused on banishing poltergeists from the city.";
fDesc[6] = "then later be used as raw material for Electronic Voice Phenomena sessions. You can then build your own EVP session by using as many sound samples as you wish and typing in specific questions to be answered by paranormal voices.";
fDesc[7] = "story is dark and intriguing and keeps you at the edge of your seat, just like a good movie. This is one of the best adventure game in the last few years.";
fDesc[8] = "undead) girl. She´s still discovering her powers, and she will need to solve some puzzles to become a Nocturnal creature.";
fDesc[9] = "equipment and your wits to hunt down and capture evidence of the paranormal that may be lurking in the dark confines of the Red Reef Inn.";
fDesc[11] = "to the psychic and paranormal world. This glossary describes basics as well as the definitions for psychic terms.";
fDesc[14] = "believe in the creatures known as bigfoot or sasquatch, but those that are investigating and trying to find proof of the creatures.";
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 = '...';
}
}