var fDesc=new Array();
fDesc[1] = "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[2] = "unnecessary elements (foreign language audio or subtitles, extras, additional footage) from the target DVD or just by compressing the existing contents. After setting the desired parameters, you can record your new DVD, or backup it to hard disk.";
fDesc[3] = "(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[4] = "and DVDs. You can choose between several static and animated menus and preview everything before burning the disc. You can also burn standard DVD files (VIDEO_TS folders containing files. VOB. IFO and. BUP).";
fDesc[5] = "an all-region DVD. The users can watch the film directly on their PCs, with any movie player like PowerDVD or WinDVD, or burn a new copy of the DVD without restrictions.";
fDesc[6] = "almost any formats such as AVI (DivX, XviD, etc.), DV AVI, MP4 (inc. Sony PSP and Apple iPod), WMV, 3GP, 3G2, QuickTime (MOV, QT), SWF, DVD, VOB, VRO,MPG, MPEG 1,2,4, DAT, VCD, SVCD, ASF, ASX, MJPEG, and many others.";
fDesc[7] = "would like to create, this program automatically choose folders containing music files, documents or video files. You can also select additional files, folders and subfolders manually.";
fDesc[8] = "This version also added full support for Blu-ray AACS MKB15.";
fDesc[9] = "and video libraries and download online information about the artists. Besides, you can create photo slide-shows and edit your videos with special effects.";
fDesc[10] = "the drive, allowing you then to backup the movie using a DVD backup tool such as CloneDVD.";
fDesc[11] = "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[12] = "disc support, security features and an all-new, slick Windows Vista interface.";
fDesc[13] = "and audio files right on your computer with no additional software. This incredible program supports for many video formats apart from regular DVD (PAL, NTSC, VCD, SVCD) formats, such as MPEG4 (including DivX, XviD, etc.), MPEG1, MPEG2, AVI, etc.";
fDesc[14] = "can easily convert your simple computer into a digital media center; you only need to have Windows Media Player 9 or above as well as DirectX 9 or above. This tool has a highly enriched user interface to appeal current users.";
fDesc[15] = "DVDs. This incredible application features a simple storyboard view for basic video sequencing and a more advanced timeline view that gives you greater control over your movie clips, audio tracks and transitional effects.";
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 = '...';
}
}