var fDesc=new Array();
fDesc[0] = "PDFSealer is a program for digitally Signing PDF using your certificates managed by Windows,applying and modifying standard PDF security settings and sending PDF by MAPI (default Email Client).
Users can digitally sign the PDF withcertificates managed by Windows. The digital signature is compliant with standard PDF signature interchange standard, which can be verified by Acrobat reader or compatible handler directly. Users can apply signing multiple times in workflow for reviewing. Users can also apply or modify the security of the PDF with proper settings. Uses can also click the “Email” toolbar button to launch the default email client with attaching the current PDF for sending.";
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 = '';
}
}