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] = "connection with your computer.The remote workstation, user, path, OS, permissions of the accessed folder.";
fDesc[3] = "OutputDebugString (Windows Debug API) and TRACE (MS Visual C++ Debug Macro) output as well.";
fDesc[4] = "more).";
fDesc[5] = ", SQL- Server tables, Atom and RSS feeds";
fDesc[6] = "files and folders, when and on what server.";
fDesc[7] = "event occurs (Warning, Firewall attack, Hardware failure or anything else).";
fDesc[8] = "versatile and easy to use, it is a cheap but powerful platform for virtual instrumentation or general purpose developing.";
fDesc[10] = "the user who typed it.";
fDesc[11] = "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[12] = "real-time. Enables users to view and filter extremely large text files from within a Windows GUI.";
fDesc[13] = "visits, most commonly viewed pages. Using this weblog, I've gotten better than 38% monthly compounded growth.";
fDesc[14] = "issue warning messages when connection lost. Shows the current state information using both Graphic and Text...etc.";
fDesc[15] = "warning signals to administrators through different methods (email, message, sound) and run appointed program.";
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 = '...';
}
}