var fDesc=new Array();
fDesc[1] = "file formats as well as DVDs, VCDs, and other streaming protocols. It includes a large number of common encoding and decoding codecs like 3GP, AVI, FLV, etc.";
fDesc[2] = ", DVD-R/RW, DVD+R and other formats (high definition videos included). The new version of PowerDVD offers many new features; for instance, True-Theater HD (which boosts up low resolution videos to higher resolutions) and True-Theater Motion which allows to increase the frame rate.";
fDesc[3] = "source codecs like Ogg vorbis. With the built-in utilities like library manager, music ripping and burning to CDs and its great playback quality, it is indeed a great music player to have.";
fDesc[4] = ", fast and quite simple to use software, what makes of it the perfect application for everyone. It's freeware, but the license is free only but non-commercial use.";
fDesc[6] = "care of pretty much all your converting needs. However, this is not a free application. It supports most common formats and, of course, formats like AVI, MPEG1/2/4, CD/SVCD/DVD, DivX, XVid, ASF, WMV, RM, QuickTime MOV, and Flash SWF are there.";
fDesc[7] = "formats to iPod, PSP, 3GP, MP4 video/ movie. It suppots most of popular video formats, such as DivX, XviD, MPEG, MOV, QT, VOB, 3GP, WMV, ASF, or AVI, etc";
fDesc[8] = "format that can be burnt to DVD and played in most DVD players. What this program does is something I had been looking for for a long time.";
fDesc[9] = "DivX it can show subtitles, providing they have the same name than the related video, and they´re stored in the same folder. You can play every type of audio or video files, even providing only its URL.";
fDesc[10] = "makes DVDs. It supports almost all formats of video files to make DVD files; you can convert AVI, MOV, MPEG, Internet clips, DVC, webcam videos to DVD.";
fDesc[11] = "Easy, user-friendly and intuitive interface will allow you to enjoy the video viewing without expending your time in mastering the program.";
fDesc[12] = "your videos. Features include batch conversion and clip selection. Supports formats such as AVI, DivX, MPEG, VCD, MP4, WMV, MP3, WMA, WAV, and others.";
fDesc[13] = "OGG formats. It supports AVI, MPEG, RM/RMVB, WMV/ASF, MOV video and audio formats. This will work extremely well for those who want to extract audio from video files or convert RM to MP3/WAV format. You can extract any audio you want and then built-in and configure it.";
fDesc[14] = "to MP4 files that will be supported by iPod";
fDesc[15] = "MPEG2, MPEG4 SP/ASP, H.264/AVC*, 3GP. Its features include Real-time, high resolution MPEG-2 video playback at HD, Brightness control, Deinterlace vertical filter among others.";
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 = '...';
}
}