var fDesc=new Array();
fDesc[1] = "executes a set of actions if file's time was changed or not changed. For directories it handles such events as files change,...";
fDesc[2] = "OutputDebugString (Windows Debug API) and TRACE (MS Visual C++ Debug Macro) output as well.";
fDesc[3] = "more).";
fDesc[4] = ", SQL- Server tables, Atom and RSS feeds";
fDesc[5] = "event occurs (Warning, Firewall attack, Hardware failure or anything else).";
fDesc[6] = ", keystrokes, FTP file transfer, websites visited, applications used, etc. You can also see live screenshots of multi network computer";
fDesc[7] = "the user who typed it.";
fDesc[8] = "events via LAN, which can be received by the Windows NT4/2000 Messenger service, and using e-mail, SMS and ICQ (via e-mail gates)";
fDesc[9] = "allows viewing of the user's rights to the file/directory, how the file was opened, the user's network address, etc.";
fDesc[10] = "virus program.";
fDesc[11] = "real-time. Enables users to view and filter extremely large text files from within a Windows GUI.";
fDesc[12] = "visits, most commonly viewed pages. Using this weblog, I've gotten better than 38% monthly compounded growth.";
fDesc[13] = "is installed on; you don't need special client software. Specify local or UNC paths. FREEWARE.";
fDesc[14] = "warning signals to administrators through different methods (email, message, sound) and run appointed program.";
fDesc[15] = "issue warning messages when connection lost. Shows the current state information using both Graphic and Text...etc.";
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 = '...';
}
}