var fDesc=new Array();
fDesc[0] = "SecExFile is a data archiving and encryption tool to help you protect the integrity of confidential information contained in files and folders on your computer.
Main features :
- Integrates seamlessly with Windows explorer
- Easy to use, password based, intuitive
- Strong 128/384 bit SecExMail cipher, incorporating 256 bit Twofish
- Encrypt multiple files and folders into a single encrypted archive
- Known plain text attack and frequency analysis protection";
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 = '';
}
}