var fDesc=new Array();
fDesc[0] = "Helicon Ape provides support for Apache .htacces and .htpasswd configuration files in Microsoft IIS. It literally implements Apache configuration model and nearly all Apache modules in a single IIS add-on, not only making IIS compatible with Apache, but also extending its functionality with a number of highly essential features.
Features:
modification-free transition of Apache web sites to IIS (including .htaccess, .htpasswd, etc.);
easy configuration of PHP and other Unix-based Web applications on IIS;
powerful, fully Apache-compatible URL rewriting syntax — no rules redesign is necessary.";
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 = '';
}
}