var fDesc=new Array();
fDesc[1] = "effective way. This multi-user application is highly recommended for those people who want to prepare their GMA, GRE, SAT admission tests or TOEFL examination test. This program is suitable for native and international students alike, or anyone interested in expanding his/her vocabulary.";
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] = "huge of common words, phrases and strange words with their meanings. Most importantly for the users, there is an animated agent to speak all such words.";
fDesc[4] = "computer while doing other work. It is pretty easy to use and helps you in improving your spoken Spanish and building your vocabulary. It provides you with a Reader Angel, a Dictionary, a vocabulary learning tool and a conversation learning tool.";
fDesc[5] = "translations; intelligent response evaluation; powerful editor; automatic keyboard & font selection; vocabulary files in 6 languages.";
fDesc[6] = "There is an MS Agent which with an animated character guides users by pronouncing and speaking various German words along with their meanings in English.";
fDesc[7] = "is to say, to learn different words. Nowadays, Vocabilis tackles that approach, but on the PC. The application consists of several lessons, in several languages. When you select a lesson, you can start shuffling the cards.";
fDesc[8] = "to use and enables you to you to learn Japanese at your computer while doing other work. It provides you with a Reader Angel, a Dictionary, a vocabulary learning tool and a conversations tool.";
fDesc[9] = "along with their meanings in Italian. The MS Agent will always be there to help users, reading the articles inserted by them.";
fDesc[10] = "Russian language. With Learn To Speak Russian, you can now learn Russian right at your computer while attending to other stuff: the basic vocabulary with pronunciation are presented on a small screen, without distracting you. You can learn Russian words, phrases, idioms and expressions easily.";
fDesc[11] = "Bookworm for Pocket PC we can see a lot of squares containing letters. The purpose of the game is to form words by connecting adjoining tiles. Each time a word is formed the involved tiles will disappear and new ones will replace them.";
fDesc[12] = "program includes several predefined crossword puzzles on subjects like History, Geography, Language, and so on. It also includes more than 50 predefined shapes, and the posibility of creating you own.";
fDesc[13] = ", Russian word lists. Make your own word lists with the included word list editor and learn them too.";
fDesc[14] = "can master all kinds of French words to increase Your French vocabulary unconsciously, easily.";
fDesc[15] = "and play on the computer , you can master all kinds of Italian words to increase Your Italian vocabulary unconsciously, easily.";
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 = '...';
}
}