var fDesc=new Array();
fDesc[1] = "such as keeping your contacts database, your task list and appointments synchronized. MyPhoneExplorer has several tabs which are: Contacts, calls, organizer, messages, files and other. In each of these you can manage different parts of you mobile phone.";
fDesc[3] = "sync and automatically backed up. It is easy to use and secure - no server required!";
fDesc[4] = "friends, business and career, among other categories selected by the user. It also includes a to-do list that enables you to add important events or tasks that require immediate attention and you can also also add reminders or recurrence.";
fDesc[5] = "sync. Contacts, e-mails, tasks, everything can be synchronized.";
fDesc[11] = "lightning fast and robust synchronization of large Outlook files between two or more computers.";
fDesc[12] = "personal organizer!\" - CNET";
fDesc[13] = "increasing productivity as simple ?viewing and clicking?. Try our Free Demo";
fDesc[15] = "two or more computers. It dramatically decreases the time needed to always keep your files updated.";
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 = '...';
}
}