var fDesc=new Array();
fDesc[3] = "our own customized DVD. This program is very easy to manage even for those users with just basic Windows skills. The wizards will guide us along the DVD creation process in five easy to follow steps. First, we need to name our project, and select the output format (NTSC or PAL).";
fDesc[8] = "StarCodec provide a convenient and stable media environment by including stable and excellent codecs. If you have low performance PC or want to play MPEG-4 only, use a lite version. A lite version can be distributed on StarCodec homepage only.";
fDesc[9] = "save the videos on your computer. After that you can use or watch these videos offline n you will not required to connect with the internet. You can transfer these videos on your other devices like Laptop, iPod, iPhone, Mobile Phones, memory stick or some others.";
fDesc[11] = "file and allows you to select the fragment of your choice. There is no re-encoding involved in the cutting process, so the resulting output file will have the same DVD quality as the original.";
fDesc[15] = "soundtrack from your video files. It supports all the best-known video codecs (AVI, MPEG, WMV, 3GP, MOV, Flash Video, and more) and the most-used portable players (iPod, Zune, Xbox360, or PSP). Its simple interface needs no help, and it takes a few clicks to make a full video conversion.";
fDesc[16] = "over TCP) with the RTSP protocol support. The plugin allows decoding of AVC/H.264 video.";
fDesc[19] = "The number of codecs this application can handle is really impressive, and is very likely to cover any user’s expectation, as ALL Windows media files are surely supported–AVI, MPEG, MP4, WMA, WMV, ASF, RM, DivX, XviD, AC3, OGG, MIDI, and many more.";
fDesc[20] = "MPEG-2 video files up to HD 1920x1152 in Windows Media Player and other DirectShow applications. Licensing available to developers.";
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 = '...';
}
}