var fDesc=new Array();
fDesc[1] = "written in the Java programming language. Once installed you won´t notice it. JRE is free to download, install and deploy, and all the related documentation can be found at http://www.sun.com.";
fDesc[2] = "developers to rapidly create connected applications that deliver the highest quality, rich user experiences. With Visual Studio 2008, organizations will find it easier than ever before to capture and analyze information to help them make effective business decisions.";
fDesc[3] = "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[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[5] = "includes many improved and enhanced features. However, there can be some behavioral changes as this new release includes certain functionalities that differ from the previous versions. The latest update for Microsoft Visual FoxPro 9.0 is Service Pack 2 which is free.";
fDesc[6] = "download a video; it also comes with a built-in video converter that can convert the downloaded video for your iPod, iPhone, 3GP player, Xbox player, Archos and for many other popular multimedia players.";
fDesc[7] = "with the ease and flexibility of a word processor.";
fDesc[8] = "own custom Windows desktops. DesktopX works by giving Windows its own native desktop object system. With it, users can add objects to their desktops that can do nearly anything the user imagines. Objects can be combined together to create mini-applications or used to build entire desktops.";
fDesc[9] = "concept to production. Celtx replaces 'paper, pen & binder' pre-production with a digital approach that's more complete, simpler to work with, and easier to share.";
fDesc[10] = "and services. It includes how-to and reference documentation, sample code, technical articles and more. To find the content you need, browse the table of contents or use search. To get the latest MSDN headlines sent to you via e-mail, you can sign up for the MSDN Flash Newsletter.";
fDesc[11] = "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[12] = "providing connectivity to Subversion. This is the core of the Eclipse platform. It includes the user interface framework and widgetry (called SWT - Standard Widget Toolkit), the skeleton of the Eclipse application .";
fDesc[13] = "java code, without any additional downloads. All the plugins and necessary java development tools – all are integrated in this prepackaged software. In order to start developing Java code with Eclipse, all you need is EasyEclipse Expert Edition.";
fDesc[14] = "all the necessary plugins, tools and essential utilities you need to start developing Desktop GUI Java application code, without any additional downloads. It contains upgraded and changed composition of tools which has made it an easy-to-start programming package.";
fDesc[15] = "JavaServer Pages, EJBs and Web Services. It contains all the necessary plugins, tools and essential utilities you need to start developing server side Java application code, without any additional downloads.";
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 = '...';
}
}