var fDesc=new Array();
fDesc[1] = "recover file open passwords for Word / Excel 97 to Word / Excel XP 2003 files in a few steps. This incredible program works by trying words from a large dictionary, that is included with the download, against the file, then tries character combinations to find most common file open passwords.";
fDesc[2] = "recover a lost or forgotten pasword from an encrypted zip archive. It doesn't matter whether if it was created using WinZip, PKZip or any other ZIP software or if it's a self-extracting Zip-archives (SFX); all are accepted.";
fDesc[3] = "archives and ARJ archives. The program is highly optimized for speed.";
fDesc[5] = "security purposes to prevent leaks you know it also represents a risk if a password is lost. Its user interface was created as a wizard and contains a lot of contextual prompts.";
fDesc[6] = "program must allow copying the password. List of programs that won't work: Windows logon screen; Windows NT services; non-standard windows applications; Web sites. Open the window with the password field and drag the magnifying glass icon from PasswordSpy to the text box with the password.";
fDesc[7] = ", WinRAR or any other ZIP-compatible software.";
fDesc[9] = "newest technologies to make password search lightning-fast. Besides brute-force attack, more sophisticated methods are also supported.";
fDesc[10] = "passwords. It is a real ZIP password cracker.";
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 = '...';
}
}