var fDesc=new Array();
fDesc[1] = "SQL scripts as well as browse database structures";
fDesc[3] = "vivid interface for your installation package. SkinCrafter Installer uses SkinCrafter engine for skins implementation.";
fDesc[4] = "cleaner code and eliminating the need to refactor your code specifically for unit testing.";
fDesc[7] = "product in 10 minutes and you don't need to write a single line of code. As it is a developer tool, you can use it no matter what programming language.";
fDesc[8] = "events for each of the maximum 20 timebars.";
fDesc[9] = "Header,Timing, Content, Cookies, Query Strings, Post data, Request and Response Stream, redirection URLs and more.";
fDesc[10] = "Consolo handles html, xml, xhtml, databases and Flash. Graphical interface makes editing easy and Consolo can be modified to suit specific needs.";
fDesc[11] = "discover, download, and apply updates automatically. add automatic updater to your app in 5 minutes!";
fDesc[12] = "HTTP/HTTPS traffic in real-time. It doesn't change your Windows system files and no device drivers or proxies have to be installed.";
fDesc[14] = "difficult to program, develop and optimize a midlet with 2 hundreds of screens. It can be a dictionary or touristic guidebook.";
fDesc[15] = "authenticate your files with single API call. Uses RSA public key cryptography. C/C++ or Visual Basic.";
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 = '...';
}
}