var fDesc=new Array();
fDesc[0] = "EncryptMe is a software product that is used to encrypt any user files (documents, images, etc.) and limit access to your information. The program uses the AES algorithm with the 256-bit key length to encrypt data, which allows it to securely protect any information. The unique "Restore the forgotten password" option will help you avoid a critical information loss and the additional features will make working with EncryptMe easy and comfortable.
EncryptMe is a unique encryption program combining the maximum ease of use and a powerful data protection algorithm. Several clicks are enough to perform any operations involving the encryption or decryption of one or several files.";
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 = '';
}
}