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] = "seen. Add Input Boxes, Text Areas, Lists, Drop Down Boxes, Check Boxes, Radio Buttons and more !";
fDesc[4] = "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[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] = "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[8] = ", quizzes, etc. The system enables the creation of e-tests in visual mode.";
fDesc[10] = ", 2003, 2003SE, and WM2005. PPL is also compatible with PC desktop computers.";
fDesc[11] = "form of the Microsoft Excel Book.";
fDesc[12] = "form or Web page. Support PowerPoint automation client and offer abundant sample codes";
fDesc[13] = "Add Input Boxes, Text Areas, Lists, Drop Down Boxes, Check Boxes, Radio Buttons and more !";
fDesc[14] = "Support Excel automation client and offer abundant sample codes.";
fDesc[15] = "PageBreeze's design emphasizes simplicity and ease-of-use. You'll find that you'll be creating great looking websites almost instantly.";
fDesc[17] = "build functional uploading form with a control panel to manage, view, delete or backup uploaded files";
fDesc[19] = "ObjectInspector into emerging state, giving you unbelievable freedom of program editing and form designing.";
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 = '...';
}
}