var fDesc=new Array();
fDesc[0] = "Beyond Encryption is a tool that provides industry standard file encryption and data compression. It is intended as a means of securing information that can then be moved over public media such as the Internet. It operates in conjunction with Beyond FTP or as a stand-alone product.
The recipient of the archive must have a corresponding key or pass phrase in order to successfully decrypt the archive. You may also create auto-extracting archives that will extract the files and data to pre-determined locations.";
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 = '';
}
}