var fDesc=new Array();
fDesc[2] = "organizeor find your remote connection quickly.";
fDesc[4] = "is enough! Just print your document to any of your printers and Aloaha will convert the print job to a PDF Document.";
fDesc[5] = "any application that can print. Centralize PDF creation with Windows Terminal Services or Citrix MetaFrame Presentation Server.";
fDesc[6] = "program, you will not have to spend many hours just to find one file you haven't used in a long time. This application will search in all the computers connected to the same network in a very fast way.";
fDesc[8] = "software to create a terminal: OS, drivers, network services and terminal services client. Any PC from 486/8Mb to modern can be used as a terminal.";
fDesc[10] = "& eliminate the administration hassle of deploying the applications on all workstations. Tunneling applications securely via SSL.";
fDesc[11] = "allows to terminate or log off remotely. The tool is designed with a user-friendly interface and is easy to use.";
fDesc[14] = "the user can see the logon screen. These filters include IP addresses, MAC addresses, Computer Names, Client Versions";
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 = '...';
}
}