var fDesc=new Array(); fDesc[0] = "Create an manipulate MIME and S/MIME messages.
-Navigate the MIME message tree structure via the NumParts property and GetPart(index) method.
- Retrieve header field names and values.
- Add header fields to a MIME message.
-Add a detached (clear-text) digital signature to a MIME message.
-Convert MIME to an opaque signed message
- S/MIME encrypt using a digital certificate.
-Decrypt and validate signatures in one method call.
-Attach files to a MIME message. Chilkat Mime automatically determines content-type based on file extension.
-Test to see if a message contains signed or encrypted parts.
- Get the body content automatically decoded (if encoded as Base64 or quoted-printable).
-Get the body content as a string. (already decoded from Base64 or QP)
- Get the non-decoded body content.
-Convert MIME to XML."; 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 = ''; } }