var fDesc=new Array();
fDesc[1] = "features. SMS service helps you to send messages to people's mobile phones. I like Yahoo Messenger mainly because of its stealth settings. Games can be played on Messenger. All of these features make Yahoo Messenger the best Messenger software.";
fDesc[2] = "user-to-user conversation. It uses a chat similar to IRC (Internet Relay Chat) . You can configure the channel you are using with many options, send TTS (Text-to-speech) messages or adjust sound effects including surround and playback or record voice streams.";
fDesc[4] = "operator compatibility as part of the alliance between Microsoft and Nortel. As the previous version, it requires a centralized server called Office Commuication Server 2007 which unfortunately isnt compatible with the 2005 version";
fDesc[5] = ", email and instant messaging, keeping you connected to what";
fDesc[6] = "IM Client MSN Messenger. Office Communicator support the same features that Windows messenger offered plus an integration with Microsoft Office.";
fDesc[7] = "Simplified Chinese, Traditional Chinese, Japanese, and Korean (CJK) languages, in our English (or other languages) applications, without the need of installing extensions for the above-mentioned languages.";
fDesc[8] = "includes a complete set of tools for effective, everyday communication. Features include Smart Browsing; a three-paned, integr...";
fDesc[9] = "server; one of your LAN (or Internet) Windows Communicator friends will host the connection.";
fDesc[10] = "application is ICQ, MSN, Skype, Gadu-Gadu and LIVECHAT ready, allows sharing and sending files. Chats and conferences are SSL encrypted.";
fDesc[11] = "little bandwidth. It provides a simple and intuitive user interface that lets you check user status quickly and send an instant message.";
fDesc[13] = "client. It is efficient and easy to use.Does not consume your computer resources.";
fDesc[14] = "protocols like yahoo, icq, aim, msn, skype, tlen, gtalk and gg.";
fDesc[15] = "personalised mail, follow-up autoresponders, check email, manage email list response tracking and email marketing program.";
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 = '...';
}
}