var fDesc=new Array();
fDesc[0] = "SecDisk is a powerful disk encryption tool to create a virtual encrypted disk,encrypt partition/volume and u-disk/flash drive.
If you have much important and private data in your computer, and do not want other person access them. or you often store the those import data in u-disk/flash drive,but it is very easy to lost the u-disk/flash drive you need a way to protect your important and private data. that is why we develop this software.
You can create a virtual encrypt disk,encrypt partition or encrypt u-disk/flash drive to store your data, if you want to access them,you just need to mount them with your password. SecDisk does not generate any temporary files, after the encrypt disk is dismounted, all data will be locked again.";
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 = '';
}
}