var fDesc=new Array();
fDesc[1] = "create interactive, flash-based quizzes and assessments easily. Although the application is a bit confusing to novice users, it becomes very handy with due practice.";
fDesc[2] = "drab presentations into engaging Adobe® Flash® multimedia experiences. Easily add narration, animations, interactivity, quizzes, and software simulations to eLearning courses.";
fDesc[3] = ", 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[4] = "training, and robust quizzes without programming knowledge or multimedia skills. * Screen recording and demos: Capture and record screen activity and effortlessly synchronize audio and video.";
fDesc[5] = "The software facilitates the system to perceive independent symbols, and combines them into words utilizing the gaps as a separator, and the process of building continues representing data as a logical chunk at every stage.";
fDesc[6] = "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[7] = "run as standalone programs at home or in the classroom. A great way to teach any subject - or just for fun.";
fDesc[8] = "ToolBook you will be able to create learning wizards that can be used under any operating system, web browser, mobile phone and device. You can do this because the final result will be deployed in DHTML, a format that can be read by most operating systems.";
fDesc[9] = "of quizzes. The program has a very simple and easy-to-use interface. That’s why it can be easily used by people who don’t have any extra knowledge about computers.";
fDesc[10] = "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[11] = "extent. Quiz maker provides 20 different question types like multiple choices, true or false, drag and drop type and so on. All these wonderful quizzes can be printed send or published.";
fDesc[12] = "assessments that you can immediately answer on-screen or publish to the Internet. It includes several ready-to-use professional templates.";
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] = "investment. Includes quizzes on Home Financing, Stocks, Bonds and Mutual Funds.";
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 = '...';
}
}