var fDesc=new Array();
fDesc[0] = "DiKe_IC is the software that allows users to operate on single files.
Main features:
- Setting the parameters for marking Thunderstorm
- Proxy configuration HTTP / LDAP
- Signature verification and / or the time stamps on a remote server - availability of time stamps
- Separation of time stamps from MIME documents
- Association of a Time stamp to a document";
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 = '';
}
}