var fDesc=new Array();
fDesc[0] = "MailMill COM is a component that allows easy email creation and sending. This component can be used by languages supporting COM objects, like Visual Basic, C , Delphi and in scripting languages like VBScript and JScript.
Main features:
- Intuitive object model, easy to implement and easy to distribute.
- Built on the robust, high performance and experienced eMill MIME encoder.
- Low memory consumption.
- Royalty Free Distribution.
- MailMill COM includes samples in Visual Basic, VBScript, Delphi and C .";
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 = '';
}
}