var fDesc=new Array();
fDesc[0] = "Sending Features
-Send simple Text or HTML Emails using SMTP Protocol.
-Supports AUTHLOGIN, plain text and POP authorisation.
-Send no/single or multiple Attachments.
-Send Bulk Emails or single emails at a time.
Receiving Features
-Receive Single Emails.
-Receive Multiple Emails.
-Receive Emails based on size.
-Full deletion control, delete any unwanted emails from the server without downloading them.
-Save the Email as EML format.
-Attachment manipulation.
-Full access to all of the mail properties.
Ras Features
-Establish new Internet Connections
-Hangup established Internet Connections
-Enumerate Phonebook entries
-Enumerate Connections
General Features
-A vast array of Events to access the component at run time and effect how it process actions.
-Detect the type of Internet connection in use, LAN, Modem, Proxy.
-A full array of events to manipulate the control at run time.
-Load all EML format emails and use the component to manipulate the properties.
Shareware Limitations
-Extra information is appended to outgoing emails with information on registering the component.";
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 = '';
}
}