var fDesc=new Array();
fDesc[0] = "StreamCatcher is an ISAPI web server enhancement that allows a webmaster to selectively detect, manipulate and analyze incoming HTTP requests. It allows rewriting of URLs using rules saved in configuration files. Rules may be entered using classic/simple syntax, or using regular expressions. It protects and improves web server performance during code red attacks, it is able to enforce a unique and separate set of rules for web robots, and others.
Features:
- A remote administration interface (via any browser) for configuration, testing and reporting.
- Independent and secure remote consoles for each individual WebSite administrator.
- A highly flexible configuration paradigm with text-based configuration files in arbitrary directory locations and no Windows registry entries.
- Real-time Trace Logging of Incoming URL requests arriving at all or an individual WebSite (remotely accessible).
- A Testing Facility for determining how one (or hundreds) of incoming URLs will be remapped, with logic detailed and discrepancies from expected results highlighted.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}