var fDesc=new Array();
fDesc[1] = "and easy to manage. It guides user throughout the whole process, without needing any programming skills. Step by step, any user can build a web site without any programming knowledge.";
fDesc[2] = "the finished page will look exactly the way it was designed. All you have to do is to point and click on desired functions, creating a web page without learning HTML.";
fDesc[3] = "webpages in only a few minutes and without any prior DHTML or Javascript knowledge. It features a nice and intuitive user interface with only one window with different tabs and allows you to preview the menu as you build it.";
fDesc[4] = "seen. Add Input Boxes, Text Areas, Lists, Drop Down Boxes, Check Boxes, Radio Buttons and more !";
fDesc[5] = "you have ever seen. Add Input Boxes, Text Areas, Lists, Drop Down Boxes, Check Boxes, Radio Buttons and more !";
fDesc[6] = ", Borland C++ Builder, Borland Delphi. Visual Basic forms viewer and source code analyzer.";
fDesc[7] = "generating and editing glossaries styles from .xls, .txt and .gls files. It allows the customization for xls data extraction, as the edition of the glossary style in HTML code, including icons, images and links.";
fDesc[8] = "tile-based antique Greek games offered by Pythagoras as an excellent brain trainer for abstract thinking.";
fDesc[9] = "Bookworm for Pocket PC we can see a lot of squares containing letters. The purpose of the game is to form words by connecting adjoining tiles. Each time a word is formed the involved tiles will disappear and new ones will replace them.";
fDesc[10] = ", 2003, 2003SE, and WM2005. PPL is also compatible with PC desktop computers.";
fDesc[11] = "PageBreeze's design emphasizes simplicity and ease-of-use. You'll find that you'll be creating great looking websites almost instantly.";
fDesc[12] = "Add Input Boxes, Text Areas, Lists, Drop Down Boxes, Check Boxes, Radio Buttons and more !";
fDesc[13] = "build functional uploading form with a control panel to manage, view, delete or backup uploaded files";
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 = '...';
}
}