var fDesc=new Array();
fDesc[1] = "spell checks on items such as form fields and comments and to add and edit custom words in their user dictionaries for future reference. A selection of spelling dictionaries used can be customized as per the order in which these are needed.";
fDesc[2] = "dictionaries and multi-document translation makes this software suitable for advanced translation purposes.";
fDesc[4] = "of some words. The two modes of the program – the teaching words mode and the spelling mode – allow children to see images depicting words, to listen to pronunciation and to learn spelling, so both audio and visual perception is engaged simultaneously.";
fDesc[5] = "use commonly in a categorized list. You will be able to recall a whole word or a phrase by typing only a few letters. This way you will reduce the time and effort employed when writing letters, emails or any type of documents.";
fDesc[6] = "autosuggest hotkey. TinySpell is excellent for correcting those nasty spelling errors that are created when doing web based e-mail, site access forms, or any other text based applications where spelling errors could pop up.";
fDesc[7] = "Teach children the Alphabet,Numbers,Count ing,Reading and Spelling using sound,pictures and video clips. Includes Story reading, Flash words and Spelling. You can also create your own Spelling words using your pictures, voice and video clips.";
fDesc[8] = "improve spelling and learn new words, while having a great time with friends or family. Merriam Webster's Spell-Jam is a game that definitely deserves a place in your game collection.";
fDesc[9] = "them learn new words, improve spelling and have a great time doing so. As in the classic hangman, the game consists of completing the mysterious word, before we run out of guesses, otherwise the man will be hung.";
fDesc[10] = "spelling with this excellent program. The aim of the game is to build as many words as we can in the least possible time, from a provided set of six letters.";
fDesc[11] = "faster. When learning vocabulary, we can change the word-displaying mode (auto/manual). Spelling and Progress features are also very convenient new features.";
fDesc[12] = "Microsoft Word. It displays the meaning or spelling suggestion in a non-disturbing way so that you do not have to shift from the application.";
fDesc[13] = "has three characters: Peedy, Genie, and Merlin that helps you to play the game. You can select the level of difficulty, add, edit, delete, export or import: spelling list, multiple choice, math, and lessons.";
fDesc[14] = "automatically corrects spelling while you are typing in any Windows program, providing you a fast and accurate typing. The program is able to \"adapt itself\" to your typing habits and \"learn\" from its own mistakes, and as a result, the program will become smarter each time you use it.";
fDesc[15] = "several languages. The words can be in any language with a Latin script, for example, English, French, German, Spanish, Italian, Portuguese, Dutch, etc. In addition, we can add the word definition and pronunciation (by recording our voice).";
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 = '...';
}
}