var fDesc=new Array();
fDesc[0] = "DVR-MS to AVI Converter is an easy-to-use tool to convert DVR-MS files to AVI (divx).
It outputs high quality video and can compress 1080p/720p DVR-MS files to AVI files. This way it will save you a lot of space to store your favorite TV Show on hard-disk.
DVR-MS file is Microsoft Digital Video Recording file used by Media Center for storing recorded television in Windows XP Media Center Edition.";
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 = '';
}
}