var fDesc=new Array();
fDesc[1] = "Project Management, Project Templates, Code Completion, Debubber Interface and an Editor with Syntax Highlighting. It also has some wizards. The User Interface is highly customizable. JCreator will allow you to compile or run your Java program.";
fDesc[2] = "applications and other customized software. It software is based on the Lua scripting engine which is common in all of the Indigo Rose tools. The output so obtained from the software is comparable to the output created by C++ and Java.";
fDesc[3] = "pages into single executable files, and ultimately into working stand-alone Windows applications, which literally resemble a normal web browser.";
fDesc[4] = "the following functions: intelligent coding, debugging stratified interactive, visual design of the distribution of the elements of the user interface.";
fDesc[5] = "from the Web, e-mail photos quickly and not exceeding e-mail size limitations, resize images and make thumbnails.";
fDesc[6] = "other Express Edition products focus on programming and application development, Visual Web Developer provides a set of tools; its versatile HTML and CSS editing tools are paired with the power of ASP.NET to allow users to quickly build web applications";
fDesc[7] = "Quest Software's Toad for MySQL leverages Quest Software's database expertise to empower MySQL developers and administrators, of varying skill levels.";
fDesc[8] = "and information marketers, offering them a simple an easy to use tool to build web sites. During the installation, the program will check if you have the minimum requirements. But, if you your computer doesn´t meet them, the program will install anyway.";
fDesc[9] = "complex regular expressions just by selecting its different components from a menu. Then, you can test the created expressions entering values to them. The program will also assist you in creating a replacement string for a given expression.";
fDesc[10] = "features a very simple and intuitive user Tabbed multi-document interface which is comfortable both for beginners and experienced programmers, making PHP development easy and productive.";
fDesc[11] = "This incredible software includes debugging features, a very comfortable editor with syntax highlighting, a syntax check feature that finds errors in your script, and many other features for easy and comfortable Perl development.";
fDesc[12] = "or Pitfall, etc. It is not a professional game creator or multimedia tool. It is a small application. Anyone can create a small game easily. But there are a lot of settings you need to set, when creating a game. Each character or object in the game can be customized in a lot of ways.";
fDesc[13] = "working with HTML, JavaScript, CSS, etc.A built-in browser, FTP client and a number of wizards provide flexible tag and style insertion.";
fDesc[14] = "makes it possible for developers, designers, bloggers, etc., to easily create and manage MySQL databases. The program's interface proves to be very smart and user-friendly, with many tools and helpful wizards.";
fDesc[15] = "want. Of course, the design process is 100% visual with excellent drag&drop features. If you are an Eclipse user, you can get the corresponding plugin to get the most powerful combination of IDEs.";
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 = '...';
}
}