var fDesc=new Array();
fDesc[1] = "password text. SeePassword provides users with an easily applied retrieval tool for forgotten passwords";
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] = "common business documents including those of Microsoft Office. Usually recovering a password takes a long time but this tool has the capacity to use the power of more than one computer to recover.";
fDesc[4] = "protected Zip files created by compression utilities like PicoZip, WinZip, PKZip, etc. Self-extracting Zip files are also supported.";
fDesc[5] = "of passwords, achieving instant recovery of document and template protection as well as passwords to modify. It supports all versions including 2007.";
fDesc[6] = "password. Any office files' read-only passwords can be recovered here.";
fDesc[7] = "site (Internet Explorer Only).Works on every windows system.When you need your password back, you need Password Discovery!";
fDesc[8] = "simple you just have to execute de program and automatically the software will do an examination in your hard disk for all your possible passwords.";
fDesc[9] = "hidden password is decrypted and showed to you instantly. It's a very useful tool to recover forgotten passwords from E-mail clients, Chat programs and Dial up passwords.";
fDesc[10] = "secret data stored by Internet Explorer, such as magazine subscriptions, bank accounts, shipping and billing addresses, credit card numbers and much more.";
fDesc[11] = ", MSIE AutoComplete fields, MS Access database files or administrator password and you forgot what it is, This is for you!";
fDesc[12] = "back to the user. It supports any POP3 email client, that stores the passwords.";
fDesc[13] = "forgotten the file's password, this program will be very useful for you. It doesn't matter if the password was entered by you or by any other user, you will still be able to find out the password and get the file opened thanks to this application.";
fDesc[14] = "tool to recover your \"forgotten\" password. This is a small utility that reveals all kinds of Eudora passwords. It is good to know that all versions are supported.";
fDesc[15] = "captures the password, which then is displayed to the user. The program supports any client FTP software: CuteFTP, WS FTP, etc.";
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 = '...';
}
}