var fDesc=new Array();
fDesc[1] = "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[2] = "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[3] = "programming experience is necessary! Just click and drag your mouse a few times, and like magic you can build a menu which will pop up when your disc is inserted into the drive. From the menu you can launch applications, open documents, play movies, and do much, much more. This is the simple, elegant solution to your disc creation needs.";
fDesc[4] = "complete with a large number of ready-to-use templates and project assistants, which make getting fast professional results child's play.";
fDesc[5] = "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[6] = "compliant with the standard W3C specifications. Interface is pretty nice and easy to understand. You just need a few minutes to make a nice menu, either horizontal, vertical and drop-down (combo-box) menus.";
fDesc[7] = "series of tools that help users to create pop-up menu, flash button, animated banner, etc.";
fDesc[8] = "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[9] = "websites even without any knowledge of DHTML or JavaScript development. It can generate all types of menus compatible with all common browsers including the Internet Explorer, Firefox, Opera and Safari.";
fDesc[10] = "programming or dhtml formatting is necessary; with DHTML Menu Builder you can easily create browser compatible dhtml pulldown menus in minutes";
fDesc[11] = "template based web developers, because everyone uses menus and buttons on the sites. But creating Menus and buttons from scratch by using web programming languages and graphics tools is a lot of time consuming task.";
fDesc[12] = "and horizontal flash menu headers, a large number of flash templates and flash menu buttons are already included in it. You can select the template of your choice and customize it the way you want.";
fDesc[13] = "HTML knowledge required. You'll make great looking professional DHTML menus for your Website in no time !";
fDesc[14] = "builder requires no dhtml-Javascript experience from you, and you can easily link your web menus to your web pages in only seconds!";
fDesc[15] = "applet. And it provides you with a lot of options, special effects and menu styles to give your website the creative edge.";
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 = '...';
}
}