var fDesc=new Array();
fDesc[1] = "utilities as Word 2007, Access 2007, PowerPoint 2007 and others. It allows users to input data into cells included in a grid made of rows and columns.";
fDesc[2] = "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[3] = "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[4] = "pretty fast way. Besides, it uses a minimal amount of resources of your system in comparison to other programs of this type.";
fDesc[5] = "user-to-user conversation. It uses a chat similar to IRC (Internet Relay Chat) . You can configure the channel you are using with many options, send TTS (Text-to-speech) messages or adjust sound effects including surround and playback or record voice streams.";
fDesc[6] = "messengers. You can use MSN messenger, Yahoo! Messenger, ICQ, AIM, and more. The support for the messenger's features is not as great as the original applications.";
fDesc[7] = "connect to different wired and wireless networks at various locations in order to either connect to the company systems or the Internet. Without this tool, they potentially need to reconfigure and restart their computer every time they move around.";
fDesc[8] = "Internet without restrictions or limits. The client is completely free of advertisements and has a nice, easy to use interface.";
fDesc[9] = "non PC devices later called MediaCenter Extenders using a wired o wireless Network. With this software you could share your music folder from your PC to another device attached to your network on the living room.";
fDesc[10] = "for access points, locate their position on a radar analyze the power of each item located, displaying their IDs and connect, an automatic mode.";
fDesc[11] = "try to solve the puzzles and join the figures on their places. You will have to connect some twigs to get the original pattern.";
fDesc[12] = "directories, from there you can do simple task as copy, transfer, delete, rename, but you can also connect to your network resources, share directories, pack archives and encode or decode files.";
fDesc[13] = "Novell Netware Servers. Novell Client can be used to view and access network resources, capture and manage printers, map drives, manage network passwords and manage rights to drives/folders/files.";
fDesc[14] = "via USB cable. This program lets you manage data on your TI device. There is the possibility to backup, create, and access your device content.";
fDesc[15] = "connect to colleagues, clients and information. It gives you wireless access to your personal and corporate e-mails on your preferred device. You can enjoy a range of conveniences including send / receive your mails, view attachments...";
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 = '...';
}
}