var fDesc=new Array();
fDesc[3] = "analyzing it. The version 3.2 of Microsoft Network Monitor has been modified to add some new tools with improved functionality such as; ‘Process Tracking’, Network Monitor API etc. It is actually an update which replaces Network Monitor version 3.1. The download size varies from 4.3MB-15.1MB.";
fDesc[4] = "and the Windows Event Log) using standard SQL statements (with SELECT and WHERE syntax). The output can be plain text files, CSV, XML, HTML and more.";
fDesc[5] = "and interface that seamlessly integrates into Internet Explorer, allowing you to start and manage your downloads easily. It provides many features, such an automatic downloading, resume of broken downloads, a download timer, automatic hang-up and shutdown and more.";
fDesc[6] = "with a SQL syntax.";
fDesc[7] = "and lexical analysers. This includes both Unicode and Multibyte Character Set (MBCS) variants.";
fDesc[8] = "to get the details in an easy-to-view-and-use format. This tool would only operate if it is installed with a .Net framework 2.0 version. Log Parser is a free tool, but can not be used by novice developers.";
fDesc[9] = "able to view separate fields of their structure. The application has a very user-friendly interface, where all the main features of mpeg files, such as resolution, frame rate, drop type, encode type, size, bite rate, picture count and others are shown.";
fDesc[10] = "auto-response emails and SMS. Email2DB is ideal for any form-based emails such as orders, customer accounts etc.";
fDesc[12] = "emails easily and painlessly. No more copy and paste or drag and drop between the many opened applications.";
fDesc[14] = "documents, web pages, emails, orders, support enquiries or feedback forms, it allows to print and save extracted information.";
fDesc[15] = "message, what type of messages it is, what data is being written or read from your device, what device the message came from, and more...";
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 = '...';
}
}