var fDesc=new Array();
fDesc[0] = "Password Generator is a simple program that creates strong passwords. The program is simple, small and easy to use. We are given a main window, where we can specify the password length (which can be from 1 to 20). The program will generate a random password for you.
We can specify whether to use numbers or characters. There are not many options in the program to customize. They could have included more features.";
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 = '';
}
}