var fDesc=new Array();
fDesc[1] = "supports mpeg2 (that is, Quick time is now compatible with .mpg, .mpeg, .vob, .vro, .m2v, .m2a, .m2s). It is also compatible with a variety of audio formats like AIFF, WAV, MOV, MP4 (AAC only), CAF and AAC/ADTS. QuickTime also opens images in jpeg format and other image formats.";
fDesc[2] = ", for Mac OS and for Windows. The application allows us to download updates for the following programs: Quicktime Player, iTunes, Safari for Windows, or Quicktime Player + iTunes together.";
fDesc[3] = "adds the ability to buy movies online as well. The estimated cost for each movie varies between about $2 and $5. This version also includes a tool called Genius, which lets you create playlists automatically by analyzing your personal library for songs that are related.";
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[5] = "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[6] = "play DVD also. One feature to be noted is that there is a built-in converter that can convert many media files to AVI or DIVX. \"AVI Doctor\" in the \"Setup\" page can repair AVI files that have been damaged probably by a P2P download that hasn't been 100% completed.";
fDesc[7] = "digital cameras, but the application can be used by anyone. Version 7.1 adds several new features. The first one is the ability to tag pictures. By tagging a picture, you give it a keyword, which you can later use to find pictures.";
fDesc[8] = "for playing QuickTime content that is embedded in webpages. Advantages of QuickTime Alternative are: Quick and easy install Ability to make an unattended installation No background processes No unwanted stuff and other nonsense Smaller size";
fDesc[9] = "program supports a big list of video formats, including WMV, AVI, MPEG 4, SWF, FLV, MOV, 3GP, RM and more. Besides, it supports many audio files, such as Mp3, WAV, AAC, FLAC and OGG.";
fDesc[10] = ", MOV, QT, MID, RMI video formats to AVI, DivX, WMV, VCD, SVCD, MP4, MPEG and WMV. This software tool is very useful for creating video clips and includes built-in DVD and Audio-Video players for displaying and monitoring all kind of video or audio format files.";
fDesc[11] = "QuickTime MOV files to AVI, MPEG and FLV formats. It´s also able to prepare MP4 files. That way you´ll be able to create VCD and DVD discs, since this program creates DVD folders (VIDEO_TS and AUDIO_TS) and VCD/SVCD images (*.bin,*.cue).";
fDesc[12] = "videos to all the popular video formats including DVD and VCD. Fast conversion speed and support for batch conversion make this tool handy and quick.";
fDesc[13] = "video formats. You can convert videos with custom video resolution, custom frame rate, audio-video quality and video codec.";
fDesc[14] = "those file formats. The standard Windows installation does not provide you with all. The file formats supported by the basic WMP are limited to the DirectShow filters automatically installed with Windows.";
fDesc[15] = "different video formats. The program supports the following output formats: AVI, MPEG2, VCD, SVCD, Xvid, DivX and DVD formats. The program has the advantage of converting video files in a very short amount of time and with a high quality level.";
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 = '...';
}
}