var fDesc=new Array();
fDesc[1] = "capabilities like calendar, task, contact management, note taking, journal, and Web browsing. It can be integrated with Microsoft Exchange Server and Microsoft Office SharePoint Server to provide extended functions to multiple users in organizations.";
fDesc[2] = "XML-based protocol that is designed to exchange structured and typed information on the Web. The purpose is to start up rich and automated Web services based on a shared and open Web infrastructure.";
fDesc[3] = "text, HTML, attachments, and subject rotation. Includes a free download.";
fDesc[4] = "everyone. But you will need to pay a fee if you want to use your @yahoo.com account from your preferred email client (Outlook Express, Windows Live Mail, Thunderbird, Eudora, The Bat!, etc.) to receive or send messages, instead of the Yahoo! web page.";
fDesc[5] = "using the HTTP, FTP, SMPT, POP3 or Telnet protocols. It doesn´t work on Hotmail or Windows Live Messenger. This program becomes useful when you forgot your passwords, but your web browser remembers them.";
fDesc[6] = "engine which is compatible with most of the SMTP mail servers. It supports authentication systems like SMTP/ESMTP, SSL, StartTLS, and Pop before SMTP and IIS directory mode.";
fDesc[7] = ", Finger, IMAP and requires 1- 5 Mb disk space. There are three versions of Mail Server: freeware, Plus and Pro.You can relay the messages to Mail exchangers and check mail using any web browser all over the world. This version has SMTP authentication and built-in web interface.";
fDesc[8] = "computer to recipient mailboxes. Along with a mass mailer the program can be used as a relay server for sending newslette";
fDesc[9] = "is a perfect solution for sending newsletters, notifications and any other types of e-mail.";
fDesc[10] = "sends e-mails from localhost to the recipients’ mailboxes getting feedback quickly. QK SMTP server works with the most popular e-mail clients, such as Outlook Express, Eudora, Foxmail, KMail, Pegasus, etc. QKSMTP Server works on Windows 98/ME/NT/2000/XP.";
fDesc[11] = "you need to send large quantities of email, set up a few of these servers on different computers and let a mass mail";
fDesc[12] = "working in.";
fDesc[13] = "view the protocol messages exchanged between your computer and the mail server.";
fDesc[14] = "gateways for messages that cannot be delivered directly. Parameterized mailing lists";
fDesc[15] = ", attachments (ASCII,binary), HTML formatting, Unicode, multiple char sets, authentication, encodings (7,8 bit,quoted-printable,b ase64)";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}