var fDesc=new Array();
fDesc[0] = "Chk-Back is a Windows utility that can scan the content of a .chk file created by Microsoft Chkdsk and restore the original file type for many common file types.
Chk-Back works by comparing the unique signature at the start of a file, known as the header, to an internal database of known file types. This removes the necessity to use a hexadecimal editor or trial and error to retrieve files that have been damaged in this way.";
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 = '';
}
}