var fDesc=new Array();
fDesc[1] = "Using WinFlashs built-in editing, browsing and viewing capabilities, users can construct anything from simple, text-only, decks for a quick pre-quiz review to complex, multi-media, computer-based-trainin g applications for corporate use.";
fDesc[2] = "search words and references in many bibles, references and dictionaries. When you install the program, it will ask you some questions to customize itself to your tast (background and text color, font size, preferred bible, etc.)";
fDesc[3] = "game. The idea beneath the game is that Eveline the Wise will have many questions for you, and you’ll have to answer them all by solving different puzzle games. The Realms of Etheria is the scenario of the story.";
fDesc[4] = "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[6] = "dictionary is set up with the examination point of view which is easy to use and an effective tool for a user to prepare for the examinations. This dictionary serves as a user friendly interface. The existing data can be edited and one can add his/her own data in the dictionary.";
fDesc[7] = "general knowledge. This PC edition of the classic game, dedicated to the 80’s, adds new game modes, and hundreds of questions related to this decade.";
fDesc[8] = "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[9] = "then later be used as raw material for Electronic Voice Phenomena sessions. You can then build your own EVP session by using as many sound samples as you wish and typing in specific questions to be answered by paranormal voices.";
fDesc[10] = "interface similar to that of Office 2007 and allows you to create surveys and polls and then share those. You can create surveys using one of the many templates available. The surveys look rather plain, but I don't see a need for fancy graphics here.";
fDesc[11] = "Developed by Funkitron, this new release is about a trivia game comprising more that 3,000 questions divided into many categories within four game types: Free Play, Challenges, Versus and Episodes.";
fDesc[12] = "over the top of another, but only if both have the same color or number and are in the same row or column. The game ends when there is no chance of a valid move. It is really complex and requires an acute observation sense and concentration";
fDesc[13] = "test your knowledge of countries around the world. This may be a tough one for those who are not so well-informed about the map of the world.";
fDesc[14] = "for quick creating of math quizzes to perform tests. The application contains all typical algebra material divided into chapters. Just select the required chapter and the program will generate a defined number of questions for checking pupils’ knowledge.";
fDesc[15] = "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[16] = "administer secure tests and track test results. Tests can be printed or issued right on the computer. Give AptiQuiz a try today!";
fDesc[17] = "an iPod, providing them with endless quiz challenges. Anyone given the file can import the quiz to put it on his or her list. Next time they run iTunes, the quiz will be synced with their iPod.";
fDesc[18] = "possible to make selections from those questions to form a good Quiz show";
fDesc[19] = "music, wildlife and general. You need to be quick at responding, since you have only 20 seconds to answer the question. if you love quizzes and trivia games, this one is definitely for you.";
fDesc[20] = "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 = '...';
}
}