var fDesc=new Array();
fDesc[0] = "Good method for creating a password is using an acronym from a phrase and then substitute or adds additional characters.
For example phrase "It's Good to be the King!" could be transformed to: 1G2betK!! (This would be a good password if it had not been used in many examples ;)
Phrase password generator utility will help you generate your phrase and convert it to unique and secure password. This is simple solution to "hard-to-remember password" problem. Just remember your easy-to-remember phrase. Small size and sui generis algorithm for password generation makes this program helpful assistant.";
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 = '';
}
}