var fDesc=new Array();
fDesc[1] = "passwords and these passwords are saved behind asterisks like these ****** in order to protect your passwords from prying eyes. This function makes working with your programs easier and more comfortable. But, as you don't need to write your passwords anymore, you eventually forget them.";
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] = "trial version available from the developer's website. This software has been designed to help us to recover forgotten and lost passwords and login from our Office documents. It runs under Windows 2000, XP, Vista and Windows Server 2003, 2008.";
fDesc[4] = "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[5] = "Access 95, 97, 2000 and XP. Unfortunately, it won't help if your database was created with Microsoft Access 2003 or 2007.";
fDesc[6] = "email software. Mail Password supports ALL email programs, including Outlook, Eudora, The Bat! and more.";
fDesc[7] = "mask, enhanced dictionary-based attack); flexible, customizable search; and help. It's all here!";
fDesc[8] = "Outlook. The tool recovers forgotten or lost passwords for Microsoft Outlook mail and news accounts, and passwords for PST and OST files";
fDesc[9] = "and forgot to say the basics. Like the password for example, well the Rixler Software is considered the Elite Password Recovery Tool. With this application you will be able to recover and display logins and passwords for email accounts stored by popular email clients.";
fDesc[10] = "by your FTP software.";
fDesc[11] = ", MSIE AutoComplete fields, MS Access database files or administrator password and you forgot what it is, This is for you!";
fDesc[12] = "users on the PC it was launched. No professional knowledge or experience is required.";
fDesc[13] = "versions earlier to 3.x. The program allows setting a password for itself for security. The passwords are revealed immediately and can be exported to a text file or copied to the Windows Clipboard.";
fDesc[14] = "to open it. In addition, find all recently saved favorites in seconds, even if you forgot their names!";
fDesc[15] = "methods, it enables instant recovery of passwords and protection removal for any OpenOffice document.";
fDesc[16] = "engine that does a super fast password decryption to return your last password immediately . The program is compatible with most .MDB files.";
fDesc[17] = "versions 5.x and 6.1 through 2002 are supported.";
fDesc[18] = "the password, we click Ok and we're in. But what happens if we forget that password and need it again for something.";
fDesc[19] = "Password Recovery. Install it, and forgotten passwords can be restored in a snap!";
fDesc[20] = "options including: Letters, Numbers, Symbols, Case Selection and more.";
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 = '...';
}
}