var fDesc=new Array();
fDesc[1] = "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[2] = "pages into single executable files, and ultimately into working stand-alone Windows applications, which literally resemble a normal web browser.";
fDesc[3] = "from the Web, e-mail photos quickly and not exceeding e-mail size limitations, resize images and make thumbnails.";
fDesc[4] = "startup, true flexibility and powerful features allow you to create and edit JavaScript.";
fDesc[5] = "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[6] = "with minimal efforts and is capable of doing virtually all the web-related operations. It features a range of capabilities such as Drag-and-Drop, PayPal shopping carts, and it supports all Windows operating system including Vista, IE 7, along with Flash Slide shows, Text FX and more.";
fDesc[7] = "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[8] = "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[9] = "source code. It is an advanced tool supporting syntax highlighting, Code Templates, unlimited text size, etc.";
fDesc[10] = "working with HTML, JavaScript, CSS, etc.A built-in browser, FTP client and a number of wizards provide flexible tag and style insertion.";
fDesc[11] = "The application scans the web page HTML code checking invalid tags, invalid tags attributes or values, misspelled sentences and invalid characters. It also looks for quotation marks that might be missing or mismatched, missing tags, over the HTML code.";
fDesc[12] = "intranet applications with web interfaces. This incredible application includes a set of features to test web sites with dynamic content and secure HTTPS pages, and also provides informative test results through descriptive graphs and reports.";
fDesc[13] = "PHP portions or files in a very easy way. Using this application, you will be able to convert from as small as one line to as thousands of lines of code in a very fast way.";
fDesc[14] = "save you time and unleash your creativity.";
fDesc[15] = "modify the page DOM (Document Object Model) \"on the fly\", without need for refreshing the entire page to see the changes. You can get in-depth information about the web document you are seeing on screen.";
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 = '...';
}
}