var fDesc=new Array();
fDesc[1] = "new, intuitive interface aimed to streamline your work flow. Also, many of the features that were dispersed in several menus, now are under the Office button.";
fDesc[2] = "music and video libraries, a manager of photographs, software for presentations of photos and videos plus an editor and covers. All these tools can be ruled out at the facility where the only thing that interests us is the writer Nero 9.";
fDesc[3] = "and watch the latest movies on Blu-ray Discs and HD DVDs, or are you simply looking for the best home-theater playback quality available for DVDs? DVD Suite 6 Ultra for creating discs of your high-definition video content, editing videos automatically, and watching Blu-ray Discs and HD DVDs.";
fDesc[4] = "video files, including high-definition AVCHD. Author your videos, adding high definition disc menus and Dolby Digital 5.1 sound, edit and enhance your movies, and burn them to almost any type of disc. It also includes a suite of tools to copy, rip, and erase your discs.";
fDesc[5] = "This version also added full support for Blu-ray AACS MKB15.";
fDesc[6] = ", etc.. It is commonly used as a virtual studio or as a collection of virtual instruments to use live or with other software sequencer.";
fDesc[7] = "software. Supports all languages that are supported by Microsoft Office 2007.";
fDesc[8] = "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[9] = "one, with only shortcuts to programs and folders you normally have on your Desktop or access it via the start menu. Create your own skins to personalize it.";
fDesc[10] = "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[11] = "many advanced features. Many additional toolbars, menus are present that give a new and interesting look to Ability Office in comparison to other office applications.";
fDesc[12] = "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[13] = "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[14] = "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[15] = "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.";
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 = '...';
}
}