var fDesc=new Array(); fDesc[0] = "Infinite Password Generator makes any number of different passwords for websites and applications. Using only a single Master Password that you need to remember and a keyword of your choice, you can use entirely different passwords for different websites!

It utilizes many keyboard shortcuts to make the generating process very easy, simple and straightforward. You can also customize the password generated to include uppercase and lowercase letters, numbers, and/or symbols.
The MD5 algorithm makes sure that no one gets the Master Password from the generated password. The specifications of the password generation method are provided so that you don't need to worry about hidden tricks.
Just a very simple application that frees you from stressful daily life."; 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 = ''; } }