var fDesc=new Array();
fDesc[1] = "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[2] = "programming. dbQwikSite writes all your code for you. Works with popular databases and web servers. Creates ASP, ASP.net and PHP.";
fDesc[3] = "don't need to know HTML. Unique and comprehensive album settings.";
fDesc[5] = "exe games to cool web games. You needn't know Java or Flash, most work can be done in a few minutes by clicking mouse.";
fDesc[9] = "your HTML file to an unmodified one. It can be used with Ewisoft Web Builder, a Free WYSIWYG Html Editor.";
fDesc[13] = "What You See Is What You Get. No need to design. Get a nice looking by a ready-made or custom-made web template.";
fDesc[14] = "your own custom style, Icons, Borders styles, and many more ...";
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 = '...';
}
}