var fDesc=new Array();
fDesc[0] = "The PdfCrypter enables the subsequent encryption and securing of PDF documents. The software works as an independent application or plugin for Outlook. When sending documents by e-mail, the security settings of your PDF documents can thus be automatically set.
In contrast to PGP and other conventional e-mail cipher systems, the content of the e-mail remains legible, only the attached PDF is protected. This makes it possible to send a document to a company’s collective e-mail address (e.g. info@company.com). The e-mail can then be subsequently forwarded to the intended recipient.";
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 = '';
}
}