var fDesc=new Array();
fDesc[0] = "AP File Protector is an easy to use software, all you have to do is simply right click on the file you want to protect and type in a password.
AP File Protector protects file using Rijndael 256 Bit Encryption.
AP File Protector has the option to Auto Protect a file. In order to make changes to a file you have to unprotect it. When file is closed it will get re protected.";
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 = '';
}
}