var fDesc=new Array();
fDesc[1] = "application ever. Nowadays, billions of people use Skype for several reasons. Firstly, it allows you to call anyone who has Skype for free. The call quality is great and you can even go on a video chat with anyone who has a camera.";
fDesc[2] = "of satellite photographs. There are three versions, the free one for personal users, Google Earth (Enterprise) and Google Earth Pro. Many interesting features: Flight simulator, Sky and Mars, Street Views and 3D Buildings and the fantastic Google Ocean.";
fDesc[3] = "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[4] = "Internet performance and more. It provides a categorized collection of tools and utilities, including a disk cleaner, registry scanner, startup manager, uninstaller manager and more.";
fDesc[5] = "user interface including new buttons of browser quick start and mail client, SMS and address book applications. Wireless Manager provides control of connections, data using, information about messages and contacts.";
fDesc[6] = "client tool. The program is compatible with Linux and Microsoft Windows and provides data encryption and password security.";
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] = "easy and friendly to do, just some clicks and the FTP server will be installed. The FileZilla’s GUI is very simple and all the information detailed is showed on the main screen.";
fDesc[9] = "allows you to remotely control another computer using the RFB protocol (remote frame buffer). The setup file installs two components: VNC Viewer used to work like client, and VNC Server that allows a Windows desktop to be accessed remotely using the VNC Viewer.";
fDesc[10] = "active TCP and UDP connections on your computer with protocol statistics. It is a set of utilities like Netstat, Ping, Ipconfig, Route, Tracert, Arp.";
fDesc[11] = "profiles from a single utility. The DCP Connection Manager replaces multiple utilities that were required in the past to configure network connections and settings.";
fDesc[12] = "display multiple connections rates at the same time. Bandwidth Monitor works with the majority network connections.";
fDesc[13] = "internet connection type. It can boost or optimize your internet connection speed by 200% or more. It is very easy to use and just by a single click you can optimize your internet connection speed and therefore your download speed will also increase.";
fDesc[14] = "for all TCP connections (including IPv6) Configurable update speed makes it more user friendly and easy to customize.";
fDesc[15] = "remote connections in a simple interface. Through the \"Tools\" option you can perform several tasks, like making SSH File Transfers, use the Ultra VNC Single Click feature, manage the communications using External Applications or perform a Port Scan.";
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 = '...';
}
}