var fDesc=new Array();
fDesc[1] = "developing web pages & applications. It contains Apache Web Server, MySQL Database Management System & PHP Programming Language. So now you can develop your applications locally on you home PC and once you have developed you applications you can upload it to your webhost.";
fDesc[2] = "ease. It is easy to install and use. Mainly designed to create a test environment but powerful enough to handle the real thing.";
fDesc[3] = "and options provided by any HTTP server with great performance and absolute control of it. Its administration is very easy however it doesn’t have any GUI; by using commands and scripts you can set it up quickly in almost any platform.";
fDesc[4] = "Tomcat is very helpful for a developer and it is compliant with almost all the security standard features required for the system administrators. It has very valuable features such as SSL support, authentication schemes, Apache integration among others.";
fDesc[5] = "server, a MySQL database, PHPMyAdmin as well as easy development tools for web sites and applications. We are not really running EasyPHP as such: we are really a starting up Apache and MySQL.";
fDesc[6] = "scripting, Google hacking & other web attacks. WVS can analyze websites using SOAP & AJAX and includes PCI Compliance reporting";
fDesc[7] = "your website like website uses, user activity, access statistics, visitor’s browser and other information in a detailed way. It’s very small in size and freely available. It supports log files of all common web servers.";
fDesc[8] = "support and database administration packages, PHP engine with 50 extensions, Zend Framework for advanced PHP developers, Zend Optimizerfor running encoded PHP files, Zend Debugger, Zend Enabler and Zend Updater for updating installed components.";
fDesc[9] = "file. ApacheConf presents all the information in the httpd.conf file in a structured view.";
fDesc[11] = "Apache Server. It also allows you to adjust many parameters in an easy way. It can manage many Apache Web Servers with different versions hosted in different platforms (Linux, Windows or UNIX). Apache Admin works on Windows platforms.";
fDesc[13] = "PHP scripts and rendering resulting HTML in the application Window. All you need to do is place PHP scripts in the document root directory of PhpDock.";
fDesc[14] = "them, view their error log files and control both local and remote Apache servers working on different platforms.";
fDesc[15] = "direct HTTP calls to various web servers, based on the total number of pending requests to each server and the average response time.";
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 = '...';
}
}