var fDesc=new Array();
fDesc[1] = ", Windows Vista support, Windows security support, telnet access, multiple monitors support, various connection modes, etc.";
fDesc[2] = "technical support, managing network from different locations, even using the program for hands-on remote education.";
fDesc[3] = "turns the software particularly useful for accessing remote machines without any previous preparation.";
fDesc[4] = "Control -Wake On LAN (WOL) -Shutdown Tool -WMI Tool -Health monitor -Reporting (Hardware/Software) -Search & modify registies";
fDesc[5] = "file server and runs without installation. A single license includes unlimited clients.";
fDesc[6] = "RemotePass works transparantly through Firewalls, Proxy servers and any other type of security device!";
fDesc[7] = "your remote desktop connection settings logically according to how you work. Designed for IT Support Professionals.";
fDesc[9] = "manage, streamline helpdesk operations, proactively resolve support requests and provide better support to your end users";
fDesc[10] = "via the Internet or LAN. The program displays the remote computer's desktop on your local screen and lets you use your mouse and keyboard.";
fDesc[13] = "fuctionality to GoToAssist, LogMeIn Rescue and WebEx Support Center at a fraction of the price. Support unlimited customers/license, free trial";
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 = '...';
}
}