var fDesc=new Array(); fDesc[0] = "WebDelegator is a server solution that permits a collection of web servers to be hosted on a single IP address. The software accepts connections on a particular address, and establishes connections to the appropriate web server to fulfill the requests. The HTTP request header is used to determine the destination web server, and to preserve the IP address of the originator. Administrative web interface allows the monitoring of connection and data transfer statistics. Access control lists allow the filtering of incoming connections. Optionally integrates with Internet Information Services (IIS) for its advanced abilities."; 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 = ''; } }