var fDesc=new Array();
fDesc[1] = "process, you will also learn interesting historical facts and also collect great mementos from completed levels to see the postcards of the places you have visited.";
fDesc[2] = "Microsoft Office Documents (MS Word, Excel, Access). It can perform brute force and dictionary attacks, and apply masks to ease the recovery process.";
fDesc[3] = "handwritten signature above it in few seconds. Use the signatures to accent your individuality in your emails and web sites!";
fDesc[4] = "be heard rather than read. With the help of this tool, you can make your text read aloud in British English and American English with both male and female voices.";
fDesc[5] = "to open and modify MS Excel files. It can use three password recovery methods: advanced dictionary-based attack, a brute-force attack and a brute-force attack using an advanced mask.";
fDesc[7] = "mask, enhanced dictionary-based attack); flexible, customizable search; and help. It's all here!";
fDesc[8] = "practicing can provide great results. EyeSpeak by Visual Pronunciation Software is an application that was developed to help all people who try to speak English correctly and without accent. The program is perfect for students and businessmen.";
fDesc[9] = "Explorer, Microsoft Word, WordPad or Notepad.";
fDesc[10] = ", calendar, and life. Information that used to be buried on your hard drive is now at your fingertips.";
fDesc[12] = "opportunity to learn Spanish vocabulary (about 3800 words), including the most frequently used expressions. This program provides one Flash card for each word or expression. The Flash card features the word, its meaning (in English), and how it is pronounced by a native speaker.";
fDesc[13] = "emulates e-mail and FTP servers to capture passwords from any FTP or e-mail clients.";
fDesc[14] = "wrestling with unwieldy shortcuts to accents, or impossible to find umlauts and circumflexes! Upgrade your character map.";
fDesc[15] = "program. It lets you enter any character, in any program, with an easy-to-remember sequence of keystrokes. No more copying and pasting from the Character Map application or remembering codes like Alt-0193. You can also set it up to produce text snippets, sections of text of any length, with similar keystrokes. Unicode compatible.";
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 = '...';
}
}