var fDesc=new Array();
fDesc[0] = "This pack contains Avidemux , ImgBurn, and DVDStyler.
Avidemux is a very powerful tool for editing video files. It supports almost every type of video file as input. It can do lots of things: cut, remux, convert, etc. It contains its own decoders and encoders for all common audio and video formats, so it does not need any external codecs.
ImgBurn is a versatile tool for burning DVDs.
DVDStyler is a basic DVD authoring tool. With this you can create your own video DVD, complete with a custom menu.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}