var fDesc=new Array();
fDesc[1] = "of use, it comes packaged with Nokia phones. This version comes with many features like backup, synchronizing, etc .. and new features like the 'Video Manager' , 'Image Store' etc.";
fDesc[2] = "your Nokia Phone to interact with your PC, opening the Internet world at your hands, so you could manage the games, the music, the ringtones and photos.";
fDesc[3] = "drivers require Windows XP or 2000. Please note: PC Suite includes all of the drivers and management features you need to use your phone as a modem. For easiest modem installation, Nokia recommends that you download Nokia PC Suite from the PC Suite site.";
fDesc[4] = "Cable DKE-2 Nokia Connectivity Cable CA-53 Nokia Connectivity Adapter Cable CA-42 Nokia Charging Connectivity Cable CA-70 Nokia Charging Connectivity Cable CA-101";
fDesc[5] = "firmware to enjoy new functionalities. The only restriction is that this software is only meant for recent devices of Series 40 or S60; all of these from any Internet enabled broadband connection.";
fDesc[6] = "means. This software will organize all the pictures on the computer and mobile phone (cellular) for viewing, editing, sharing and search purposes. You can move pictures from and to PC and mobile phone (both ways) and make changes to the images that will be kept in a safe place.";
fDesc[7] = "just in beta version. This program-client provides access to the music online shop Nokia Music Store, lets you organize, discover and download music, create playlists and then copy it to mobile device.";
fDesc[8] = "First at all you need a cable to make your connection, it depends what kind of model you are working with. Visit the Nokia web site and find your compability driver!.";
fDesc[9] = "downloaded maps of over 200 countries on your PC to a mobile device with Nokia Maps previously installed. You can use the Nokia Maps application on your device any place at any time.";
fDesc[10] = "you’ll be able to transfer photos, video from smart phone Nseries to your PC, organize them and place at the online service Ovi. It is also possible to transfer content from the PC to the smart phone and at the same time all the files will be converted to the appropriate format.";
fDesc[11] = "industries. Ovi includes all of the PC suite functions and features while having additional features and a far more intuitive and attractive user interface.";
fDesc[12] = "creating multimedia messages to be sent via your mobile. The tool allows you to easily get through with creating and handling of messages with images, video and audio clips.";
fDesc[13] = "technology Bluetooth. You can use Nokia Wireless Presenter to control your PowerPoint presentations, music players and other Windows applications. Simply install this software in your PC and your Nokia phone, to remote control the mouse and keyboard functions when doing presentations.";
fDesc[14] = "smoothly, efficiently, and with complete ease. Furthermore, the application lets you download video files from a number of web sites that host content created by users.";
fDesc[15] = "Navigator only. The program is provided with scan function to search maps on the computer and DVD. Nokia Map Manager is an additional application and is used together with Nokia PC Suite 6.86 and later versions.";
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 = '...';
}
}