var fDesc=new Array();
fDesc[0] = "Iside is a hash function or message digest computing tool.
The hash code is the unique fingerprint of a binary or text file. It is produced by a hash function.
File/Folder comparison and file integrity checking is made computing the hash code for each file.
ISIDE computes and displays standard hash codes for any file.
Main Features:
- Hash code displaying for any file
- Hash based files and folders comparison
- File integrity check
- Computes and verify .md5sum checksums
- Unattended folder comparison with Windows TaskScheduler";
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 = '';
}
}