var fDesc=new Array();
fDesc[0] = "This program will generate between 1 and 250 usernames with a secure, complex password for each username.
If you only want 1 username/password, the program displays the generated output at the bottom of the screen.
If you generate more than 1 username/password combination, the program creates a CSV file that you can import straight into your username database.
You can also use the program to generate a complex password for a specific username.";
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 = '';
}
}