var fDesc=new Array();
fDesc[1] = "notification. You can manage all of your conversations in a single message window. Besides, you can send your friends an SMS from your PC with ICQ. Your friends can SMS back from their mobile directly to your ICQ message window.";
fDesc[2] = "Yahoo!, this application is targeted at gamers. It is a simple application that does without all the unnecessary features of those messengers. The main window has information that resembles the friends tab of Xbox Live!";
fDesc[3] = "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[4] = "our favorite software’s to proceed with video calls, take pictures, create our own videos. The program provides options to configure the saturation, brightness, contrast, gamma and others.";
fDesc[5] = "or join chat rooms, with thousand of different themes. create pal groups, play games on line with another Paltalk users, chat with AOL IM, ICQ and Yahoo! Messenger users. If you invite friends to join Paltalk, you will be rewarded with Paltalk points.";
fDesc[6] = "category. The application allows you to use several monitors and expand your desktop to more than one of them. Newer operative systems, like Windows XP or Windows Vista have features like this. Basically, you can move a window from monitor A to monitor B in real time.";
fDesc[7] = "make phone calls to landlines or cellphones, with lower fees than the charged in regular calls. WengoPhone 2.1.2 can be installed in English or French.";
fDesc[8] = "conferences, video e-malis, calls forwarding, voice mail, SMS worldwilde, file transfer, chat are also available";
fDesc[9] = "tutorials without any programming language necessary. It's as easy as: record - edit - export - play";
fDesc[10] = "highest quality audio and video available in any video conferencing product.";
fDesc[11] = "on large screens using video projectors.";
fDesc[12] = "easy to download. Just by downloading this softphone you will be able to make voice and video conferences, send SMS, MMS or file transfer.";
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 = '...';
}
}