var fDesc=new Array();
fDesc[0] = "imlSoft CD/DVD Guard can burn password-protected and encrypted discs. It supports most of CD/DVD, if you have a recorder and you want to burn an portable encrypted disc, you can use this tool.
Protected CD/DVD is fully autonomous and does not need any special software installed on computer. It creates protected areas on the disc that is needed to enter password to see contents.
Data on the protected areas are encypted by 256-bit AES on-the-fly encryption.";
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 = '';
}
}