var fDesc=new Array();
fDesc[1] = "introduced with a number of improvements, which includes a list of new features, bug fixes, a number of new parameters, functions, methods, extensions, classes, INI configuration Directives and also security enhancements.";
fDesc[2] = "formatting, class and methods auto-completion, indexing of user directories and a lot more. This new version features more extensive configuration wizards for beginner users, and enhanced CSS WYSIWYG tools.";
fDesc[3] = "the same as any regular PHP files. The extension also optimizes your regular php scripts and make them run up to 10 times faster and the encoded PHP files to almost double the speed. Zend Optimizer has a cross-platform compatibility and supports both php4 and php5.";
fDesc[4] = "Application developers. It stands out in the crowd of other IDEs and PHP editors as it has the most powerful and useful plugins and developers tools which are always helpful in developing present day web applications rapidly and effectively.";
fDesc[5] = "most complete IDEs of the market: with ZendStudio you can improve your skills and enhance your productivity in every stages of your PHP project.";
fDesc[7] = "auto-complete and color coding features. The program offers advanced debugging functionality and has built-in SQL manager, FTP client and integrated web browser.";
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] = "PHP scripts so that nobody can see the real code; and also restrict your scripts to run on a certain ip/domain for a limited time along with many other advanced licensing options.";
fDesc[10] = "reverse-engineering. It also supports the creation of licensing system making it suitable to sell your scripts safely. The new version supports PHP 5.1 and Zend Optimizer 3.x.";
fDesc[13] = "dynamic and static web pages. The program saves your resource usage such as CPU, RAM/memory, bandwith and in addition, increases the speed of page loading and decrease the downtime.";
fDesc[15] = "engineering, unauthorized customization, unlicensed use and redistribution. Zend Guard helps you distribute your PHP apps securely";
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 = '...';
}
}