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] = ", 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] = "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[4] = "motorcycle steering skills. Amazing realistic motion, complex obstacles, jumps and all these are in full 3D!";
fDesc[5] = "offers a video splitter which can cut any video file with desired duration. Ultra Video Converter can convert all the video file formats like, 3GP, MP4, AMV, AVI, DivX, Flash(flv), MPEG, DAT, VOB, WMV, Xvid and BIN.";
fDesc[6] = "format including MP4 and DVD videos and create video clips in minutes for your multimedia phone, iPod and portable multimedia players. The user interface is very simple and designed while keeping the novice in the mind.";
fDesc[7] = "file. The program can merge almost all the popular video file formats including AVI, Divx, XviD, MPEG, WMV, ASF, RM, MOV, 3GP, MP4, FLV and MKV videos.";
fDesc[8] = "CD and DVD video formats in three clicks. The powerful RM/RMVB decoder supports all RM/RMVB files, even without installing \"Real Player\" itself onto your PC.";
fDesc[9] = ", AAC, AC3, AMR, AVI, DivX, FLV, MP4, MP2, OGG, VOB, DAT, WAV and many other video formats. Additionally you can create small video clips using the built-in video splitter by setting up the start and end points of the video.";
fDesc[10] = "minutes. You can create videos for your multimedia phones, Ipods, mp4 players, portable video players and DVD players using this program.";
fDesc[11] = "the galaxy. This fast-paced game is full of action, as enemy ships and huge meteorites appear from all sides, forcing you to avoid them while at the same time shooting your enemies and collecting the power-ups.";
fDesc[12] = ", PSP, PS3, Zune, XBOX 360, Archos, Cellular Phone and Pocket PC in two clicks. Additionally you can use the in-built video cutter to create clips out of big video files.";
fDesc[13] = "called Bitcomet as well as the number of available sources. The plug-in sits in your system tray and enables you to control everything from there.";
fDesc[14] = "the cards in four foundations in suit from Ace to King. Play the most popular card game!";
fDesc[15] = "main objective is to form in 4 columns, different groups of cards in ascending order to place them in foundations at the right of the screen.";
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 = '...';
}
}