var fDesc=new Array();
fDesc[1] = "High configurability powerful scripting and a wealth of features make ZOC a great tool to access Unix shells.";
fDesc[2] = "large companies. It'll enable admins to take full control of all network assets with hardware and software tracking, device audit, etc.";
fDesc[3] = "system admins to connect and control remote computers and gain access to their desktop, make file transfers, make chat conversation with the remote computer users. The enterprise edition has many exclusive features that are not found in free or personal editions.";
fDesc[4] = "is an amazing program named Network Traffic Monitor. Very quickly it informs its user about all the ongoing threads and processes on the client’s machine that cause or are responsible for the traffic generated on the network.";
fDesc[5] = "Includes lightweight console mode module for scheduled use on file server.";
fDesc[6] = ", its configuration and from unduly changed passwords. You can also define which Programs a user is allowed to run and which not.";
fDesc[8] = "messaging (PMs). Chat rooms are fully moderated by user admins who can control disruptive behaviour by other users. Online support is also available in Help lobby by contacting any of the red admins who work/ volunteer for the program.";
fDesc[9] = "as execute their own ad-hoc queries. Supports Windows, Linux, Solaris, Oracle, MySQL, SQL Server & Sybase.";
fDesc[10] = "winpopup). It recognizes Domain computers, controllers, guests, users, admins, NT global users, etc.";
fDesc[11] = "vulnerable to attacks. Identifying vulnerabilities such as SQL Injection and Cross-Site Scripting (XSS).";
fDesc[12] = "the structure that already exists. It supports ADO, ODBC and offers unprecedented control over migration.";
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 = '...';
}
}