var fDesc=new Array();
fDesc[1] = ", there is a lot more than LEGO-created characters and environments to it. This game divides the three Indiana Jones movies into 6 chapters each, so it is like playing through the movies all over again.";
fDesc[2] = "windows and smoking chimneys. Twilight approaches, snowfall becomes heavier, and snow accumulates on the ground, on roofs and trees, making the picture even more realistic.";
fDesc[3] = "city. There are spikes, fire, barriers and the other traps on the Bumpys way from level to level.";
fDesc[4] = "allows texture, model and sound add-ons so they can be ported into the original Doom. It gives a new life to an already great game and allows gamers to live nostalgia and fun at the same time.";
fDesc[5] = "available for free downloading. We can save our progress and continue playing whenever we want, without having to play a game all over from the very beginning. Spectaculator emulates all major ZX platforms, among which are Spectrum 48K and 128K, Pentagon 128 and Scorpion 256.";
fDesc[8] = "that the developers have. This screensaver takes you away from your tiring and busy schedule on the computer to a relaxing and soothing environment in the snowy wonderland.";
fDesc[9] = "printout includes a greeting, by name, from the then-President of the United States, plus newspaper headlines & more.";
fDesc[10] = "features about sixty high-resolution photographs, with the prettiest images of autumn days. Most importantly, Joys of Autumn is absolutely free.";
fDesc[11] = "program designed to play those games in your PC. With good controls and a bunch of features included in the game, this is a good emulator for all Intellivision fans.";
fDesc[14] = "desktop publishing, database editing for tailoring content, a built-in address book for storing names and more.";
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 = '...';
}
}