var fDesc=new Array();
fDesc[0] = "Htpasswd Generator is a program that will help you to manage the main authentication files for Apache web server - .htpasswd, .htgroup and .htaccess. This program is a convenient shell with a graphical interface for managing users, user groups and their passwords (with SSH and FTP support).
Htpasswd Generator is a program that will not allow such situations and help you organize data in the files .htpasswd and .htgroup. Htpasswd Generator "binds" data from these two files and looks like a convenient shell with a graphical interface for managing users, user groups, and their passwords.";
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 = '';
}
}