var fDesc=new Array();
fDesc[0] = "Password protect web pages in just a few clicks! No need to learn complicated perl, php, ASP and Web database, no need to learn encryption algorithms, no need to write a piece of CGI script, Web Password Wizard will guide you password protect web page, html page and whole web site in just a few clicks!
Main features:
After login, different users can be redirected to different web pages.
Each user can access different HTML files.
Manage more than 100 user groups and more than 1000 users in each group.
Encrypt HTML source code and disable right mouse click.
Other features:
Supports all kinds of web servers, does not require CGI, ASP, PHP, Web DB support or any special web software.
Strong encryption algorithms to provide best security.
Easy to use wizard style interface;";
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 = '';
}
}