var fDesc=new Array(); fDesc[0] = "Advanced ZIP Password Recovery allows you to crack passwords of ZIP files. This might sound like this is an illegal tool, but it is actually the opposite. Sometimes, we forget the passwords we set for our password-protected ZIP files, and there is one way to do it. Since there is not a way to simply deduct the password of a ZIP file directly, this application uses two methods: brute-force and dictionary attacks. The brute-force method is perhaps the most efficient one. It tries to every possible combination of characters. However, that can take some long time depending on the length of the password and the processing power of your computer. The other method uses a dictionary of common passwords to try and see if there is a match there. The application does a good job of recovering passwords and has some extra features. Advanced ZIP Password Recovery allows you to stop and resume password searches, to try to find passwords of self-extracting files, and more. This application can only work with one file at a time, but you can open as many instances of the program as you want. However, the cheapest solution is to never lose your password; it could save you $50."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }