var fDesc=new Array();
fDesc[1] = "viewer supports most SVG elements, as well as CSS properties and DOM elements. Additionally, the ActiveX control has been signed so you don't have problems with the ActiveX security warning introduced with Windows XP Security Pack 2.";
fDesc[2] = "pretty easy to use. It takes just a minute to make a nice drop down menu with nice graphics and cool behavior, and without write any single line of code.";
fDesc[3] = "Tree Menu works well with Dreamweaver, Expression Web, FrontPage and Golive. And it can generate absolutely search-engine-friendly sitemaps.";
fDesc[8] = "predefined designs and supports easy integration with existing web sites. FrontPage/DreamWeaver/ GoLive/NOF plugins includes.";
fDesc[14] = "publishing make the menu creation simple. Supports Windows Vista. Well integrate with Dreamweaver, FrontPage, Expression Web and GoLive.";
fDesc[15] = "nearly 500 ready-made menu templates, intuitive user interface and is compatible with all popular browsers.";
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 = '...';
}
}