var fDesc=new Array();
fDesc[1] = "as well as from portable mass memory units such as Flashcard, Memory Sicks, Camera cards, etc. The application offers selection of drive, type/format of media files to recover (audio, pictures, photographies, movies, video) and the target folder for the recovered files.";
fDesc[2] = "pronunciation in a foreign language. It offers you a complete system for learning words through a flashcard based system. The flash cards come with picture and sound. The deluxe version of the software adds pronunciation practice and mobile support.";
fDesc[3] = "custom quizzes or tests to memorize vocabulary, science knowledge, history, etc., With Teach2000 you can create simple questions like yes/no questions, and also they can be more complicated like multiple choice and multiple choice with multiple answers.";
fDesc[4] = "wizard. The learning modules are composed of flashcards that can contain audio, video, and images, and also examples of any type. The software comes with two ready to use learning modules, one about languages and other about world capitals";
fDesc[5] = "String box. This word can be an English word, or a Korean word (Hangul). The resulting word can be opened at the Word Definition window, that is, the Korean word, its definition, a few examples, and its HanJa equivalent, whenever possible.";
fDesc[6] = "program to increase our vocabulary in any subject area. This program has a simple to manage GUI, where we have the opportunity to create our personal made to measure word files.";
fDesc[7] = ", study and track your progress with this leading-edge learning tool! Powerful multimedia capabilities. Easy to learn and use.";
fDesc[8] = "your progress with this leading-edge learning tool! Powerful multimedia capabilities. Easy to learn and use.";
fDesc[9] = "Easy to edit and maintain vocabularies. Work with Greek or Russian or other character sets";
fDesc[10] = "graphically distributed according to the two characteristics 'mastery level' and 'date of the last mastery'.";
fDesc[11] = "and get listed in the hall of fame. Demo limited to 1s, 2s, 3s, 5s and 10s table. Statistics saved about each run.";
fDesc[12] = "editor, free updates, and e-mail support. Double-clicking on a data file starts program and loads file.";
fDesc[13] = "progress with this leading-edge learning tool! Powerful multimedia capabilities. Easy to learn and use.";
fDesc[14] = "distributed according to the two characteristics 'mastery level' and 'date of the last mastery'.";
fDesc[15] = "feedback on order/placement using character recognition. Multiple choice and fill-in-the blank flashcard quiz modes. Supports KANJIDIC and EDICT file.";
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 = '...';
}
}