var fDesc=new Array();
fDesc[0] = "Sendmail for Lotus Notes is a command line tool for sending mails using Lotus Notes.
Lotus has no external program sending mails.
With Sendmail for Lotus Notes you can:
Using your default infrastructure based on Lotus Notes.
(Security features like encryption and signing available)
Send mails using every program that can spawn/execute an other program.
(eg.: ERP Systems, MS Office, VB Applications, Server and Network health programs, ...)
Attaching files as text or attachment to the mail. (* and ? as wildcards are allowed)
Haveing full control over "Delivery priority", "Reply To",....
Tested with R4.5x, R4.6x, R5.x, R6.x, R7.0 and R8.x";
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 = '';
}
}