var fDesc=new Array();
fDesc[1] = "DVD from home videos. You can playback digital media files, and make an archive song collection in MP3. You can also backup personal data and legally record DVDs.";
fDesc[2] = "(CD, Blu-Ray Disc, DVD or HD DVD). Among its principal features, you can find an audio converter, a \"Mixed Disc\" option, that lets you create CDs combining different types of files, and many disc utilities.";
fDesc[3] = "few clicks, and then enjoy it with versatile streaming features. With Nero you are sure that your data is safe after an event of system crash or a damaged disc.";
fDesc[4] = "Share your movies all over, on iPods, YouTube, or the new HD home theater systems, with full support for discs as AVCHD, Blu-ray and HD DVD.";
fDesc[5] = "formats like AVI, MPEG, MPEG 1, MPEG 2, MPEG 4, VCD, DVD, SVCD, RMVB, RM, WMV. You can also convert your video to audio formats such as MP2, MP3, AC3, RA, M4A, OGG, AAC.";
fDesc[6] = "experienced users. You can choose over 200 templates to make your work more creative. You can create wide range of projects such as collages,comic strips, calendars, greeting cards.";
fDesc[7] = "your music, photos, images with the easy to use tools. It contains and create photo albums, DVD videos, and organize your important data files.";
fDesc[8] = "for home DVD Players and perform other burning tasks. With this incredible program you can burn DVD-Video files available on HDD directly on a DVD disc and watch a movie in a home DVD Player.";
fDesc[9] = ", by choosing the files to save, by burning images to disc or creating bootable CDs or DVDs. You will be able also to create audio CDs with audio tracks, or any kind of disc with MP3 or WMA files.";
fDesc[10] = "key-framing, photo/video layering, copy protection, templates and more. This program has nothing to do with Power Point; it goes beyond, providing users with features required for professional projects.";
fDesc[11] = "slide shows, import images for background, add different buttons, text, and images. You can change the properties of the buttons, text and graphic objects. You can create chapters to play each movie. Supported video file formats: AVI, MPEG, and VOB.";
fDesc[12] = "control. You can import your favorite DVD MPEG I/II or VOB files, arrange them into tracks and chapters, and next customize the menu display. You will get amazed!";
fDesc[13] = "popular file formats can be converted to DVD and played on any DVD player. This utility provides settings needed for DVD creation such as choice of NTSC or PAL standards, resolution of the video, aspect ratio of the video.";
fDesc[14] = "video and audio to add to your project. Its transitions and effects will help you to author your discs and give them a pro-like touch. Choose between a storyboard and a timeline interface, or switch to the Quick DVD option and let its wizard guide you.";
fDesc[15] = "WMV. Allows to edit menu for your DVD with templates or inserting background image and music. Supports DVD-R, DVD-RW, DVD+R, DVD+RW, DVD+R DL, DVD-R DL and DVD-RAM.";
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 = '...';
}
}