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] = "application ever. Nowadays, billions of people use Skype for several reasons. Firstly, it allows you to call anyone who has Skype for free. The call quality is great and you can even go on a video chat with anyone who has a camera.";
fDesc[3] = "both with voice, calling, video conference, gaming, and mailing functions. The program has not changed much from the previous versions in its core, but adds a great array of new features that the user can surely benefit from.";
fDesc[4] = "any significant changes, except, perhaps, a couple of bug fixes from the previous entry in the franchise and some improvements in the voice calling system.";
fDesc[5] = "restrictions about how many clients can connect to a server. It is free of charge for non-commercial purposes. The Server browser allows you to search for public servers. Little suggestion to make: private text message get lost in the other diagnostic messages.";
fDesc[6] = "millions of people in existing audio and video chat rooms, or create a video-conference of your own to bring together other PalTalk users with similar interests. You'll enjoy 6 full video windows of your friends while communicating in chat rooms.";
fDesc[7] = "\"these expressions\" in our computer, making a single call from our computer to others. This software called Microsoft Life Cam version 2.4 is a single program which works with several kind of cameras and of course we can enjoy and talk in a video-conference way.";
fDesc[8] = ", no matter where they are in the world. ooVoo has many great features — from video calls with up to six people at once to video messaging to chat and file transfer capabilities.";
fDesc[9] = "messengers. You can use MSN messenger, Yahoo! Messenger, ICQ, AIM, and more. The support for the messenger's features is not as great as the original applications.";
fDesc[10] = "Microsoft Office installed on the user PC and accessed through internet. As expected, service is adquired through licensing Microsoft software and web servers or included on Office Communication Server";
fDesc[11] = "whiteboard real-time application sharing, text chat, audio, and Webcam, file transfer, multiple presentation modes, password protection, audio session recording, and pending Softphone.";
fDesc[12] = "fee. Upon installation, the user can add contacts to the contact list and start calling them seamlessly. The call quality is good even on slow Internet connections.";
fDesc[13] = "the contents on your computer, even your desktop, and your ideas with anyone connected to the Internet, anywhere in the world. In order to host meetings, you´ll need to signup for free using the program.";
fDesc[14] = "with other CallBurner users free of charge. This amazing plug-in provides you with high quality recording. It also enables you to record each side of the call to a separate file.";
fDesc[15] = "easily schedule conference calls exactly the way you set up meetings right from your email client. You can use the same menus and calendar tools, send invitations, view your account information, manage your preferences, and also create recurring conferences using all your existing contacts";
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 = '...';
}
}