var fDesc=new Array();
fDesc[0] = "Free Folder Lock - Lock, hide, encrypt, back up and Password-Protect Your Files, Folders, and Drives Safe, Fast and Easy
Lock all your Files, Drives & Folders
Hiding any type of data like images, documents & videos on your PC with a click of a button
Create portable self-executable Lockers in USB Drives, CDs/DVDs, Emails
Works on 32-bit and 64-bit versions of Windows 10, 8, 7, Vista, XP
Password-protect files, folders and drives
Encrypt your important 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 = '';
}
}