var fDesc=new Array();
fDesc[0] = "Zip Repair is a utility that will repair corrupt Zip files. Usually a corrupt Zip file gives the error message: "Cannot open file: it does not appear to be a valid archive".
Zip Repair creates an error free backup of your original file for instant access, or you can extract files directly from a corrupt ZIP file to your hard drive. No special skills required. A simple user interface with full install / uninstall support.";
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 = '';
}
}