var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to remove passwords from one or more PDF files. The user simply adds the required files or an entire folder before choosing the method. There is a way to quickly remove the password if you know it but if you don't know it, there is a brute force method and dictionary file method. Brute force will guess at the password based on a specified character set and a minimum/maximum number of characters that you specify. The dictionary option will guess at the password based on words listed in a text file chosen by the user. Using this time saving software, passwords can be removed from even large numbers of PDFs with one click."; 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 = ''; } }