var fDesc=new Array();
fDesc[1] = "shall get a lot of services from windows live. It is a free service created by Microsoft. But there are many features that you will need to pay for like the Windows Live Call, which is something like Skype.";
fDesc[2] = "speeding resolution of customer-reported problems. PC-Doctor 5 for Windows provides support technicians with powerful hardware diagnostics and system information tools to speed call resolution and increase first-call resolution rates.";
fDesc[3] = "(landline or mobile). It provides a good service at good rates, but they depend on the country the call is made to. A PC with internet connection, headphone and a microphone are required.";
fDesc[4] = "best part is that you can call any country any place or any valid number across the globe. Providing 5 different applications this software is a must use software.";
fDesc[5] = ", Yahoo Messenger, AIM, and ICQ. VoIP features include free internet calls, low cost PC to phone, and phone to PC calls.";
fDesc[6] = "part of the world. The service is really cheap and works perfectly. It also enables you to call other VoiPCheap users all over the world for free.";
fDesc[7] = "but nice interface that is easy to use and has the most common features needed for communication. An option for home users searching for a VoIP telephony service.";
fDesc[8] = "can call anyone via the internet who has installed any SIP softphone. The program is really easy to install and use, and within minutes you can speak to family, friends and colleagues around the world. If you want even more fun, you can connect your webcam or other video device to it.";
fDesc[9] = "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[10] = "Whatever your industry, NewWayService allows you to follow efficiently your service requests (work orders / Jobs) in an efficient way.";
fDesc[11] = "a complete Solution, selected projects, project items, namespaces, classes, modules. The output can be exported to HTML, PDF and RTF.";
fDesc[12] = "Solution, selected projects, project items, namespaces, classes, modules. The output can be exported to PDF and RTF.";
fDesc[14] = "the history of all the problems and solutions encountered.";
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 = '...';
}
}