var fDesc=new Array();
fDesc[1] = "such as clear org charts, complete maps, spectacular flowcharts, time lines and much more in just minutes in a very easy way. No experience is needed.";
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] = "more rapid and precise than ever through an improved set of tools. Create a prototype of Adobe AIR, directly in Adobe Fireworks , ready to be implemented in HTML and CSS, Adobe Flex or SWF.";
fDesc[4] = "Start with one of build-in logo template or create your custom logos from scratch. http://www.aaa-logo.co m/";
fDesc[5] = "page-oriented, code-based tools, or visual tools that offer limited HTML control. Now, with NetObjects Fusion 3.0, Web professionals can build the dynamic Web sites their clients require to meet the needs of todays sites.";
fDesc[6] = "of Flash websites, HTML websites and Flash presentations.";
fDesc[7] = "web site design software. Features include: drag and drop design, full website management, website asset management, built-in FTP and more.";
fDesc[8] = "you make up stunning websites for your business, home or school in just few minutes. It´s not necessary to have any complicated HTML or other programming.";
fDesc[9] = "journal, student or personal website with Namu6. One click publishing, picture effects and themes are included. No HTML skills required.";
fDesc[10] = ", learn and do to create a basic web page. It covers all stage from brain-storming to registering your domain and uploading content.";
fDesc[11] = "no need to learn HTML or master complex applications. Adobe(R) PageMill(TM) has all the tools youll need to create and deliver an attention grabbing, well-designed site and then get back to business!";
fDesc[12] = "represent their ideas. Edraw provides you with over a hundred drawing types and thousands of shapes, some simple, some quite complex. It has different purpose templates from flowcharts plans to computer networks.";
fDesc[13] = "application offers many tools for anybody to generate a simple website, with all the possibilities any other site will have, and also a built-in FTP program for uploading the project to any Internet server.";
fDesc[14] = "simply point and click on website templates, click the web designs that you like, and voila! You are done! Che";
fDesc[15] = "software combines the best professional creative tools from Adobe with exceptional integration and productivity, so you can meet new creative challenges and take your business in new directions.";
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 = '...';
}
}