var fDesc=new Array();
fDesc[0] = "File Protection is a simple, but revolutionary solution for assuring the privacy of your sensitive or content restricted files.
A File Protection is an easy to use tool that hides a specified file into a password protected BMP file. The carrier file preserves its initial format, allowing access and view mode as a normal BMP file, without anyone suspecting that it also contains a hidden file. If sending encrypted files via email or internet, it is compulsory for the receiver to have A File Protection application and the appropriate password in order to reveal that file.
This application allows you a good management of files with sensitive content, by providing security and restricted access to files. Whether it is about classified or personal information, A File Protection guarantees the certainty of securely storing or sending information.";
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 = '';
}
}