var fDesc=new Array();
fDesc[1] = "in-built disk defragment tools which actually work but Smart Defrag works even more faster and uses advanced technology to speed up your disk drive and processing.";
fDesc[2] = "of related words, with one-click look up in almost any Windows program. The database has over 150 000 root words.";
fDesc[3] = "be told, it hasn't hit the note yet. The game features the HULK, which should be a synonym for chaos, unrest, explosions, etc. Everyone should be afraid of him, but not these people. The game is way too similar to Spiderman.";
fDesc[4] = "articles. When we open the program we can see a Menu Bar, one toolbar, one panel and a window, for put our articles. We can create and rewrite tons of articles for use them in our pages, this program is very useful.";
fDesc[5] = ", easy-to-use, off-line English thesaurus that helps you write and speak better by leading you to the right word for every purpose or occasion.";
fDesc[6] = "words. User can select the word from the list box and the synonym is displayed in Urdu beneath the list box. CleanTouch English-Urdu Dictionary allows search of the first letter but subsequent letters initialize the search to the first letter";
fDesc[7] = ", this tool is just what you need! If you try to look it up on the WordBrowser995 the answer would be: “1. thesaurus, synonym finder -- (a book containing a classified list of synonyms)” Well, it seems it works just fine!";
fDesc[8] = "article unique. You will have the chance to rewrite the same article as many times as you wish. The variations are made by us, not by the computer, so they will not sound computerized.";
fDesc[10] = "provides very flexible and powerful search tools. The program uses a dictionary of 158000 English words.";
fDesc[11] = "feel the Christmas spirit. You will enjoy a beautiful room with lots of ornaments of many kinds. The fireplace is just great! The flames go up and down, the logs shine and the whole fireplace changes its lighting according to the intensity of the fire.";
fDesc[12] = "duplication. Create new text automatically.";
fDesc[13] = "first word with the second word that is exactly the same, a synonym, an antonym, or a homonym.";
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 = '...';
}
}