var fDesc=new Array();
fDesc[0] = "Keyparc works on most computers - Windows, Linux and Mac OS X. Keyparc enables you to work with your secret files as-if they are in plain. You do not need to change your current workflow nor learn to use it. Access your sensitive files in Keyparc drive as-if it is a normal drive.
Keyparc secures all file types and supports all languages.
Keyparc protected files are portable amongst platforms.";
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 = '';
}
}