var fDesc=new Array();
fDesc[0] = "If you are playing avi files, you may have noticed one of the following things:
- Suddenly the image froze but the sound kept playing.
- Disoriented or equally coloured blocks of pixels distorted the image for a time.
Using DivXRepair, you can repair corrupt avi files and eliminate freezes. This program automatically detects and eliminates bad frames.
DivXRepair cuts off the bad parts and re-assembly the avi file. (The bad parts of avi are undecodable frames / freezing frames).";
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 = '';
}
}