var fDesc=new Array();
fDesc[1] = "Download Manager will let you have full control over your downloads, accelerating download speed to squeeze your bandwidth.";
fDesc[2] = "select your question before time is up. Answer different questions correctly and rise the level of a ladder meter in your screen, think fast and if you don't know the answer you better remove it, each bad question will make the ladder fall.";
fDesc[3] = "Africa, Asia, Eastern Europe and Middle East. Players play the role of Thomas Mason, a mercenary whose goal is to strive hard to free the world from terrorism threats.";
fDesc[4] = ", short-answer, jumbled-sentence, crossword, matching/ordering and gap-fill exercises for the World Wide Web. Hot Potatoes is freeware, and you may use it for any purpose or project you like. It is not open-source.";
fDesc[5] = "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[6] = "game board with different monetary values on them. You have to choose one of the categories and a monetary value to play for, and answer the corresponding question.";
fDesc[7] = "Pursuit in three different modes: Solitaire (you against the machine), Time Attack (you against time) and 1 to 4 players, to play against other humans.";
fDesc[8] = "casual game is based on the homonym Fox television show being Jeff Foxworthy the host in both. As you may know, players are assisted by fifth grader when answering questions suitable for children in the first to the fifth grade.";
fDesc[9] = "friends. You can also play the single mode and answer adult or kids questions. The adult questions are more difficult. Each person will have to throw the dices and then choose a question category.";
fDesc[10] = "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[11] = "harder making it a game suitable for players of all ages and intelligence. Extra questions are available for download.";
fDesc[12] = ", this tool is just what you need! If you try to look it up on the WordBrowser995 the answer would be: “1. thesaurus, synonym finder -- (a book containing a classified list of synonyms)” Well, it seems it works just fine!";
fDesc[13] = "HTML page. You can create quizzes with multiple answers, telling the program which of them can be right, or make question to be answered by true or false. You can also include questions with an open answer, indicated in a text box.";
fDesc[14] = "Quiz builder 's capability to create an unlimited number of tests and quizzes makes it stand out from its other rivals in the same program category. This software application contains useful features and quiz types to solve all your problems related to quiz making.";
fDesc[15] = "series of questions to answer, and if your answer coincides with a survey carried to100 random people, to earn points.";
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 = '...';
}
}