var fDesc=new Array();
fDesc[1] = "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[2] = "location via the Web. Easily set up in minutes and easy to use. Work on your PC, as if you are there, anytime, anywhere.";
fDesc[3] = "organizeor find your remote connection quickly.";
fDesc[4] = "Desktops and control them in real time simultaneously, as if you were sitting in front of them. Display each desktop in 1, 4, 6 or 9 window(s).";
fDesc[5] = "their desktops as well as on remote computers on their network. Apart from common features, like those offered by th...";
fDesc[6] = "easy access to different operating systems. It transparently connects different operating systems and their applications together. You need not worry where these applications are physically located on your network. WinaXe brings remote UNIX applications to your PC with each in a separate window. There are no discernible differences when compared to local PC applications which run simultaneously with those from the host remote system. WinaXe links to most UNIX hosts including Sun, Digital, Linux, HP-UX, SCO Unix, IBM (AIX) and many others. The strongest feature of this environment is that it is all happening concurrently and is totally interactive. You can copy and paste text and images from one application to another simply by using your mouse and transfer data among heterogenous computer environments with ease. WinaXe takes nothing from your PC, instead it brings another operating...";
fDesc[7] = "use the software to see what users do on remote computers and automatically take screenshots.";
fDesc[8] = "& eliminate the administration hassle of deploying the applications on all workstations. Tunneling applications securely via SSL.";
fDesc[9] = "system-critical parameters making it possible to diagnose existing and potential bottlenecks on Windows 2000/XP computers.";
fDesc[10] = ", support and inventory desktops from a central location.";
fDesc[11] = "work and have no another way to verify what are their children doing. It helps when remote customer wants to show his desktop to you.";
fDesc[13] = "your remote desktop connection settings logically according to how you work. Designed for IT Support Professionals.";
fDesc[14] = "desktops, all visually and easily. Simply type in the name of the server, and give login information, and you are presented with a visual cue of space.";
fDesc[15] = "with very powerful forensic tools to detect and monitor unauthorized and illegal behavior.";
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 = '...';
}
}