var fDesc=new Array();
fDesc[1] = "sources of information, on a given word or phrase in any application on your PC just by Alt-clicking on the word. In the first instance, an information bubble opens up to display the definition of the word using Answers' selected information source.";
fDesc[2] = "good. Don't let all those acronyms confuse you. MMORPG stands for Massive Multiplayer Online Role Playing Game. In short, it is a game where thousands of players meet and explore a persistent world.";
fDesc[3] = "here is a best quality XTerm medical dictionary. This medical dictionary not only contains detailed description of medical terms but it is also full of chemical formulas and diagrams.";
fDesc[5] = "covers most of the computer-related fields including Internet, chat, programming, networking, graphics etc.";
fDesc[7] = ", and any person dealing with words and language. This complete application consists of a database where you can load lots of dictionaries covering most of the European Languages, plus a good number of technical bilingual glossaries.";
fDesc[8] = "is entered to be read out by the Synthesizer. After the Text is entered, pressing the Speak button starts the sound output. There are additional buttons for Stopping, Erasing and Pausing/Resuming the text. The help file is quite elaborate to utilize the utility.";
fDesc[9] = "Legal, Financial, and Computer Dictionaries, Encyclopedias, Acronyms, Idioms, Thesaurus, and a Literature Reference Library.";
fDesc[10] = "to your blog posts. Whenever you enter an acronym, it is searched on various websites such as TUCAA and AcronymFinder and the actual description is fetched and inserted within a blog.";
fDesc[11] = "chats,Instant Messages , & Text Messages. This is an awesome software for parents because it gives you an inside look into your teenagers online life.\"";
fDesc[12] = "for those who work with technical documentation - engineers, scientists, technical communicators...";
fDesc[13] = "area codes, compare countries worldwide, expand acronyms easily, or use a measurement converter.";
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 = '...';
}
}