var fDesc=new Array();
fDesc[1] = "can be protected using an user password, which will prevent you from ever opening the file if you don't have the password. They can also be protected using an owner password, which restricts several functions of the PDF file in question.";
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] = "Berlin Wall hadn't fallen? Well, we would be living in a quite different world. That is what the game is all about. The Berlin Wall didn't fall and the Soviet army kept on getting more and more powerful.";
fDesc[4] = "is just like taking the real test. In fact we’re so confident that it will help you pass your Theory Test that we offer a money back PASS GUARANTEE";
fDesc[5] = "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[6] = "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[7] = "given tower more stable and durable than your opponent's by replacing blocks with numbers. The numbers should be increasing from the top to the bottom of the tower.";
fDesc[8] = "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[9] = "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] = ", phone numbers, addresses, etc. This simple yet innovative program will let you create questions and answers, and after a period, it will ask you to answer these questions correctly.";
fDesc[12] = "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] = "takers can print out test summary reports. Feedback is made automatically. Unicode support. Accessible Quizzes";
fDesc[14] = "Quiz takers can print out test summary reports. Unicode. Free for personal use.";
fDesc[15] = "easy to use interface.";
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 = '...';
}
}