var fDesc=new Array();
fDesc[0] = "Object FIX ZIP is a program for repairing ZIP archive files. It can reconstruct a specified Zip file by creating a new Zip archive while recovering the contents of the faulty Zip file where possible.
Main features:
- Extracts files from ZIP archives with CRC errors.
- Extracts files from partially downloaded ZIP archives.
- Extracts multiple ZIP archives with a single operation.";
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 = '';
}
}