var fDesc=new Array();
fDesc[1] = "throttling, anti-leeching, anti-hacking, and features an intuitive multilingual remote web management interface.";
fDesc[2] = "Windows address books, Socks5 proxy protocol. Has open ActiveX/COM and CGI/ISAPI interfaces for developers.";
fDesc[3] = "license for non-commercial use. It supports PHP, Perl, Python, Ruby, ASP 3.0 Classic, ASP.Net, MySQL, SQLite, Firebird and PostgreSQL.";
fDesc[5] = "combat hacker fingerprinting. Anti-reconnaissance confuses hackers enhances compliance with PCI DSS standards.";
fDesc[7] = "bandwidth costs dramatically. HTTP compression shrinks the size of common Web files safely and automatically provides browser compatibility.";
fDesc[8] = "for users who have a slow dial up connection and speed ups the loading of pages on your site in general.";
fDesc[11] = "crawlers will not check your web site so often.";
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 = '...';
}
}