var fDesc=new Array();
fDesc[0] = "Nginx for Windows is an HTTP and reverse, a mail, and a generic TCP/UDP proxy server.
Among numerous basic HTTP server features it boasts of Serving static and index files, autoindexing; opening file descriptor cache. It provides accelerated support with caching of FastCGI, uwsgi, SCGI, and memcached servers. Besides that it works with Name-based and IP-based virtual servers. You are also offered embedded Perl among other numerous features.
As a mail proxy server, it offers user redirection to IMAP or POP3 server using an external HTTP authentication server among other features.
As a TCP/UDP proxy server it can limit the number of simultaneous connections coming from one address. It also offers IP-based geolocation.";
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 = '';
}
}