var fDesc=new Array();
fDesc[1] = ", streaming audio and video, Podcast, and much more in the most smooth, safe and swift way. The amazing capability of this application depends on its 12 different downloading tools.";
fDesc[2] = "connections and vital IP statistics and examine individual packets.";
fDesc[4] = "to perform; no further requirements to install the program are needed. The HTTP Analyzer GUI is friendly and easy to use; the different data sections are organized in different sections to make easy the information analysis.";
fDesc[6] = "Header,Timing, Content, Cookies, Query Strings, Post data, Request and Response Stream, redirection URLs and more.";
fDesc[7] = "HTTP/HTTPS traffic in real-time. It doesn't change your Windows system files and no device drivers or proxies have to be installed.";
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 = '...';
}
}