var fDesc=new Array();
fDesc[2] = "treasures, bonuses and confront cyber-guards. Splendid graphics and miraculous music help you immerse into the unforgettable virtual world!";
fDesc[3] = "an Internet connection, without being blocked by corporate firewalls or requiring administrative rights to install software on the remote device. No previous relationship with the system is required, but permission from the end user is mandatory.";
fDesc[5] = "desktop and gain full control over multiple number of remote computers that have VNC server installed and perform multiple system and network tasks.";
fDesc[6] = "generation of a “Magic Packet” to remotely power on PCs attached to networks. When the remote network adapter hears a “Magic Packet” created for its unique MAC address the network adapter alerts the computer to power on.";
fDesc[8] = ", documents, emails, settings, programs and more to virtually any local or remote device";
fDesc[9] = "loved by computer users worldwide. Those of us who love it, know how much of a hassle it is to keep more than one instance of iTunes synced. And when you add more than one iPod or iPhone to the mix, things get far more complicated. TuneRanger is an effort to make this problem disappear.";
fDesc[10] = "presentations, tutorials and testing!";
fDesc[11] = "restore files, documents, SQL, exchange, emails, settings, programs and more to virtually any local or remote device";
fDesc[12] = "for using in networks, connected to Internet through phone line(modem).";
fDesc[13] = "router's config files, backing up configurations, watching SYSLOG events and managing your routers from one place";
fDesc[14] = ", allowing the user to set and send even complex command sequences with a single button click, schedule sequences, send commands and create his/her own button arrangements";
fDesc[15] = "the members of the specified device information set. You must have administrative privileges on the remote network computer.";
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 = '...';
}
}