var fDesc=new Array();
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[4] = "you back in time. For some of you it will mean going back to the time when we used to watch black-and-white TV. For others, it will just be to the time when the movie was released.";
fDesc[5] = "new life. Our innovative software gives you full remote control of your telephone over the internet.";
fDesc[7] = "Skype answering machine as well as a Skype to phone gateway. Use your cell phone to make and receive Skype calls.";
fDesc[8] = "competitive modes or Space Mahjongg.";
fDesc[9] = "webmail from work even when its blocked. Lets you help friends surf from behind iron firewalls.";
fDesc[10] = "without lots of complicated options and features designed to appeal to people who want a simple low cost quality game.";
fDesc[11] = "rise, set, and meridian transit for each of these celestial bodies. Additionally, it can calculate the times for twilight";
fDesc[12] = "this handy utility.";
fDesc[13] = ", aliens, and old men. Game features many futuristic settings with obstacles like meteor showers, black holes, and monsters.";
fDesc[15] = "helps you to save disk space and to prevent performance loss.";
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 = '...';
}
}