var fDesc=new Array();
fDesc[1] = ", Windows Vista support, Windows security support, telnet access, multiple monitors support, various connection modes, etc.";
fDesc[2] = "allows us to connect to a remote computer server. The connection modes are Full Control, View Only, Telnet, File Transfer, Shut down, Chat, Voice Chat and Send Message. Depending on the selected mode, a specific window will be opened so we can enter the details. We can create Phone Books.";
fDesc[3] = "our computer network. We can control and view remote screen, transfer files, Telnet, redirect, start up, shut down, text chat, audio chat, filter IP addresses, and send messages to any remote computer where the program has been previously installed.";
fDesc[4] = "different types of information about local network computers in just a few seconds. This incredible application gives you one-click access to many useful functions such as remote shutdown and wake up, Radmin integration and lots more.";
fDesc[5] = "several IT and networks specialists by more than 5 years. I remember that back in the day, this application was the only application of its kind. What this application does is let you manage your workstations from a single application.";
fDesc[6] = "desktop tool can access remotely Windows PC or OSX Mac despite firewall’s, router’s or proxy’s configurations. This version supports Remote Desktop and RAdmin. It supports \"dynamic-DNS\" for VNC Servers without static IP addresses. EchoVNC works on Windows and Mac platforms.";
fDesc[7] = "allows you to install or uninstall Radmin server (a famous remote administration tool) on these computers in order to remotely control them. The program has an MSI package configurator that helps you to predefine your own settings for the server program.";
fDesc[8] = "were physically using it. You can remotely access the same computer from multiple places, using File Transfer, Telnet, Text and Voice Chat, Messaging, View Only and Full Control mode with Multiple Monitor support in addition to other useful features.";
fDesc[9] = "work, the computer should have TCP/IP installed and Internet access. We can open the program and configure the options provided, such as port, logging, resolve IP addresses to host name or not, use log file, proxy settings (address,port, user, and password).";
fDesc[10] = "run on the part of the client when using Radmin Communication Server 3.0, an online instant voice chat and text chat messaging tool for enterprises.";
fDesc[11] = "in real-time via instant text and voice messages. It provides public/private messaging channels, voice chat room, etc. We can customize the program language from the settings options, set user names, passwords, and specify permissions for each one.";
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 = '...';
}
}