var fDesc=new Array();
fDesc[0] = "The hash function determined a fixed length checksum from a file of any size. This cross-or checksum is similar to a fingerprint for each file and almost clear.
This allows files to compare, without checking the contents of the file itself.
Features:
- Determine the MD5 hash value
- Create a text file (*. MD5) with the MD5 hash value
- Paste the MD5 hash value in the filename
- Creating a log file
- Compare the MD5 hash values";
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 = '';
}
}