var fDesc=new Array();
fDesc[1] = "it is to use! Everything is \"drag and drop\". No need to know HTML or any other techie language, its as easy as painting by numbers!";
fDesc[2] = "program, but includes advanced customization options so we can enjoy a menu of absolutely professional installation. The program has an interface that emulates the Windows Explorer.";
fDesc[3] = "WMHelp.com. It’s the basic version of WMHelp.com, which can be run without a license. is very easy to use as the toolbar and menus that are displayed at the top of the window can be handled very easily. Just pressing a button can hide them.";
fDesc[4] = "professional, high-quality navigational bars and DHTML menus. Xara Menu Maker produces dynamic hierarchical menus and permits anyone create a cool and clever DHTML menu with graphical NavBars.";
fDesc[5] = "difference to the charm of the homepage of an ordinary website, by adding elegant and stylish buttons and good looks, thereby making it user friendly and eye catching.";
fDesc[6] = "series of tools that help users to create pop-up menu, flash button, animated banner, etc.";
fDesc[7] = "is compiled into an individual executable file working on al Windows versions. The construction of the menus is easy, quick and does not require any advance knowledge.";
fDesc[8] = "gallery on your website in minutes, easy to use, user friendly and no coding required.";
fDesc[9] = "solution for creating a PDF photo album. You can print and distribute them, burn them on a CD, send them with email or publish them on Internet!";
fDesc[10] = "is very easy to use due to its simple but unattractive interface. You can add or delete pictures you want and specify the time you want each picture to be played on the screen.";
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 = '...';
}
}