var fDesc=new Array();
fDesc[0] = "The MD5 Hash generator allow you to generate 128-bit MD5 hashes for your files, allowing you to check for corruption during downloads, or to generate the MD5's for distributing with your software.
Main Features:
- Drag and Drop functionality
- Right-clicking on any file shows "Generate MD5 hash" option
- Can generate a .md5 file next to the target file, as often found on many webservers.
- NEW to V1.2 - Can now batch process files, just drag and drop multiple files to the window and .md5 files will generated for them all!
- NEW to V1.3 - Can generate FastSum compatable md5 files.";
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 = '';
}
}