var fDesc=new Array();
fDesc[1] = "questions. The answers need not to be correct, but must coincide with a list obtained through a survey taken from a hundred people. The questions are about things you will find in your daily life.";
fDesc[2] = "to guess the most popular answers the people gave to a certain question. While this new edition doesn’t have much of a change, it still offers the good things. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[3] = "people who answer the same, the amount of points you get. If you get no points on an answer, or run out of time before typing the answer, or click the No Answer button, you get a strike. When you get 3 strikes, the game is over for you.";
fDesc[5] = "series of questions to answer, and if your answer coincides with a survey carried to100 random people, to earn points.";
fDesc[6] = "multiplayer game, so if you like you can play it with family and friends. The basic idea of the show is that you have to guess what were the most popular answers people gave to a certain question.";
fDesc[13] = "white rules, this spam killer will filter out all your junk email!";
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 = '...';
}
}