var fDesc=new Array();
fDesc[0] = "Secret information, images, PIN-codes, passwords.
Store them securely in this Safe on your PC.
No more difficult codes to remember!
With the personal locks, only YOU are able to open it.
After the trial, the Safe will remain locked and you
will need to register the product to open it 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 = '';
}
}