var fDesc=new Array();
fDesc[1] = "Samsung mobile phone and your PC. It offers many features such as a Networking Wizard, which allows you to connect to the Internet; a Multimedia Player to play different files; and many other options to manage and organize your files, your phone contacts and your messages.";
fDesc[2] = "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] = "computer in a VOIP (voice over IP). It looks just like a normal telephone where the the send button an the key numbers are displayed.";
fDesc[4] = "SMS, backup your data, create original rigtones or copy YouTube videos right to your phone and much more.";
fDesc[5] = ", logo, tone, photo, multimedia browser, Java application download. Connection method supported: Data Cable, IrDA, Bluetooth.";
fDesc[7] = "connect devices and smoothly manage their content on PC using a well-organized interface. OxyCube - the compelling replacement of PC Suite.";
fDesc[8] = "program provides work with Phonebook, Calendar, Organizer, Pictures, Modes, Melodies and Messages sections. The program has the ability to store any data either in Phone memory (Flash memory card is also supported) or at hard disk.";
fDesc[9] = "supports Outlook integration, connecting multiple mobile phones and smart phones running Windows Mobile.";
fDesc[10] = "of a cellphone from a PC. You can organize your phonebook, events and tasks, gallery, send or receive SMS and MMS and much more.";
fDesc[11] = "station presets from the phone to the PC's memory, easily edit them and upload them back with couple of mouse clicks.";
fDesc[12] = "application, all you have to do is connect your Sony Ericsson mobile to your PC by USB cable, select the FILE TRANSFER option that appears on the phone and all your fitness results will be automatically transfered to your PC. It's very easy, isn't it?";
fDesc[14] = "also has handy multimedia center for pictures and melodies management. SMS sending support.";
fDesc[15] = "can manage your phonebook, calendar, WAP bookmarks, profiles, edit logos, save ringtones. Manage SMS folders, send and receive messages.";
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 = '...';
}
}