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] = "website builder and so users does not required any technical or programming knowledge to create websites. Due to its template based designing process, users can easily add or modify content without affecting the design of the site.";
fDesc[3] = "Webshop with point and click ease. This powerful ecommerce solution is trusted by over 203,000 online shops around the world.";
fDesc[4] = "software, HTML, programming, or hosting company required.";
fDesc[5] = "category driven product catalog with highly customizable styles, user defined language and powerful features.";
fDesc[6] = "Internet. The purpose of this store builder is to provide an easy-to-use interface that automatic creates all the HTML files necessary to run your store.";
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 = '...';
}
}