var fDesc=new Array();
fDesc[1] = "inspect all HTTP(S) traffic, set breakpoints, and manage incoming or outgoing data. It includes an event-based scripting subsystem, and can be extended using any .NET language.";
fDesc[2] = ", post data, detailed html information, redirection, compression, etc. The application is useful for checking a site for security purposes and avoiding to send or expose user sensitive information data.";
fDesc[3] = "traffic transmitted over a local host and a local network";
fDesc[4] = "framed interface. In the upper left panel you will see the general information about each HTTP connection (time, client and server IP, URL, file length, status and information).";
fDesc[5] = "protocol and the web server, then HTTP Debugger is the program for you.";
fDesc[6] = "your network. It can listen to traffic from any network interface currently connected to your system and it can detect passwords on several protocols, such as POP3, SMTP, FTP, and HTTP.";
fDesc[7] = "HTTPS traffic and analyze Cookies, POST and GET information or locate HTML code by directly clicking in the web page (Patent Applied For). JavaScript and Ajax developers can quickly test scripts against a production web page without having to modify the server source code. Web Analysts can dissect the HTTP traffic related to web analysis tracking code, using the powerful filter and search capabilities. Web Site Designers generally have to provide many mockups before receiving a final approval. With IEWatch, you can create prototypes by quickly modifying any existing web page on the internet. System Administrators can analyze HTTP data and identify performance bottlenecks by using the HTTP performance chart. Quality Assurance Engineers can use this tool to dig deep into the inner workings of web applications to find hidden issues. IEWatch makes the inner workings of a web site...";
fDesc[8] = "between two requests. The generated requests are sent to the specified URL.";
fDesc[9] = "help System Administrators in security and performance issues. HTTP Debugger works on Windows 2000/XP/2003/Vista platforms.";
fDesc[10] = "application-related traffic. The program creates an http tunnel with a mediator server, where the traffic conversion is taking place.";
fDesc[11] = "easy-in-use program applies different filters, features many advanced functions and has a user-friendly, easily customized interface.";
fDesc[12] = "Internet Application (RIA) developers in the debugging, analysis, and testing of their applications.";
fDesc[13] = "to the Internet, based on the volume of data downloaded (or uploaded) from the Internet.";
fDesc[15] = "corresponding response), it will display the headers, and 4 views of the body: Text, Hex, XML, and Image.";
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 = '...';
}
}