var fDesc=new Array();
fDesc[0] = "Rohos Mini Drive password-protects a USB flash drive by creating a hidden and encrypted partition on the disk. Its intuitive Setup Wizard automatically detects your USB flash drive and sets all the properties for the encrypted partition; you just need to provide a password to protect it.
Disk-on notifications help you to know when secured partition is connected or disconnected. If you click on the balloon, the Explorer window will be opened to show the disk.";
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 = '';
}
}