var fDesc=new Array();
fDesc[1] = "It features slideshows, templates with three-dimensional effects, high transparency and even Vista-looks, along with useful tools for a highly sophisticated website design and management.";
fDesc[2] = "seen. Add Input Boxes, Text Areas, Lists, Drop Down Boxes, Check Boxes, Radio Buttons and more !";
fDesc[3] = "web site design software. Features include: drag and drop design, full website management, website asset management, built-in FTP and more.";
fDesc[4] = "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[5] = "Axure RP Pro is a useful tool to create templates in wireframe for web applications. This is a powerful program that thanks to the wireframe system, will allow you to get a reliable idea of the final result.";
fDesc[6] = "powerful drag-and-drop website creation tool that includes everything you need in one package.";
fDesc[7] = "more. We can handle any kind of flash contents and we can create 3D buttons, 3D slideshows, button bars, news readers, Multilevel Menus and more. With the help of this program we can also create flash navigations, flash intros, 3Dflash, flash slideshows, flash banners and HTML websites.";
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] = "ready-made graphics, shapes, templates and wizards for quickly creating professional diagrams and drawing.";
fDesc[10] = "website that can be viewed on any mobile phone and other mobile content such as multimedia messages. This toolkit contains a wide range of editing tools and help files, along with a series of emulators which allow seeing on a computer screen how the site will look on a mobile phone.";
fDesc[11] = "unified environment that lets you work more productively than ever before. Create web and interactive content and design websites. Enjoy new creative effects and controls, as well as productivity enhancements such as Multi-file Place and table and cell styles.";
fDesc[12] = "knowledge of HTML, the language of the web. This software has a very easy interface closely similar to that of a word processor which makes the website development procedure simple and quick.";
fDesc[13] = "programming in order to have your own professional website setup in a few minutes.";
fDesc[14] = "down on a piece of paper ! No need to learn html tags. With an easy-to-use interface in which you can manipulate the text anyway you want.";
fDesc[15] = "applet. And it provides you with a lot of options, special effects and menu styles to give your website the creative edge.";
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 = '...';
}
}