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] = "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] = "file. ApacheConf presents all the information in the httpd.conf file in a structured view.";
fDesc[7] = "environment and editor for creating, testing, debugging and running perl scripts, directly or through associated html documents. Includes many tools.";
fDesc[8] = "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.";
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 = '...';
}
}