var fDesc=new Array();
fDesc[1] = "defaults preference for the windows media player. Most of the time it so happens that after you install many softwares or codes, a video file may not play in windows media player or Media Center. This can be corrected by using this program.";
fDesc[2] = "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[3] = "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.";
fDesc[4] = "decoding, de-multiplexing, dumping, and streaming. DXVA support in the Elecard MPEG2 Video Decoder significantly decreases CPU usage and provides substantial performance gains. Elecard MPEG2 Video Decoder is Windows XP Media Center Edition compatible.";
fDesc[6] = "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[7] = "it. DXVA support in Elecard MPEG2 Decoder decreases CPU usage and provides substantial performance gains.";
fDesc[8] = "over TCP) with the RTSP protocol support. The plugin allows decoding of AVC/H.264 video.";
fDesc[10] = "MPEG-2 video files up to HD 1920x1152 in Windows Media Player and other DirectShow applications. Licensing available to developers.";
fDesc[12] = "easily divide one VOB file into several smaller VOB files of whatever size you specify. it can also extract AC3 stream.";
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 = '...';
}
}