var fDesc=new Array();
fDesc[1] = "away, as if you were sitting in front of it. You can hear alert sounds, use your files, print remotely, transfer and synchronize files, link local drives to connected PCs and more.";
fDesc[2] = "stands for Virtual Network Computing, and it uses 2 small programs: Server and Viewer. The Server handles the service, and \"serves\" the access to the host computer. The Viewer, is used to access the computer where the server is installed and configured.";
fDesc[3] = "see the desktop of a remote machine and control it with your local mouse and keyboard, just like you would do it sitting in the front of that computer. TightVNC is: * free, GPL-licensed; * useful in remote administration, education, and for many other purposes; * available for Windows and Unix";
fDesc[4] = "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[5] = "Ignition gives you instant access to all your PCs, whether they are LogMeIn Free, Pro or IT Reach computers. Your log in information and preferences are stored securely, enabling instant access from anywhere without having to remember all of your passwords.";
fDesc[6] = "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.";
fDesc[7] = "recovering by dictionary attack, brute force attack, hybrid of dictionary and brute force attacks.";
fDesc[8] = "allows you to isolate faults, simplify processing of diagnostic data, and increase internal network security.";
fDesc[9] = "mouses are being made with a lot of capabilities like more buttons and wheels and some can even be used as remote controls for your tuner card, etc. This program includes drivers for all Microsoft mouses and additions to the \"Mouse Properties\" in control panel.";
fDesc[10] = "alerts immediately via audible alarm, message, e-mail, or third-party software when a connection fails. This is an excellent network monitoring tool delivering low cost, simplicity of operation, and 24/7 coverage.";
fDesc[11] = "custom text with just one key press! Create custom keyboard shortcuts for any action of your system! Turn your keyboard into a remote controller!";
fDesc[12] = "instances of LogMeIn and other remote access software, including PC Anywhere, GoToMyPC, and VNC, on corporate systems. LogMeIn Scout 2.0 allows system administrators to create policy-driven security and usage policies.";
fDesc[13] = "& eliminate the administration hassle of deploying the applications on all workstations. Tunneling applications securely via SSL.";
fDesc[14] = "transferring/browsing files, editing registry keys, system moderating and administration, realtime PC monitoring, and more!";
fDesc[15] = "Microsoft Remote Desktop for BlackBerry wireless handheld devices";
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 = '...';
}
}