var fDesc=new Array();
fDesc[0] = "Boxcryptor encrypts your sensitive files and folders in Dropbox, Google Drive, OneDrive, and other cloud storage. It automatically detects your installed cloud storage providers and adds them to the virtual Boxcryptor drive. If you want to edit an encrypted file, just open it, make your changes and save it like a regular file. Since data is encrypted on your device before uploading to cloud, no one can access them.
Boxcryptor is free to use with one cloud storage provider on two devices.";
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 = '';
}
}