var fDesc=new Array();
fDesc[0] = "MassCert is a user-friendly batch digital signature utility.
It features automatic mass-signature using Microsoft's SignTool (Windows SDK required), it supports timestamping compliant with RFC 3161, and it can handle PKCS #12 personal information file (X.509 certificate private key bundle).
Automatic verification of correct execution and internationalization support are also available.";
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 = '';
}
}