var fDesc=new Array();
fDesc[0] = "This is small tool capable of calculating CRC-16, CRC-32, MD-5, RIPE-160, SHA-1 and other variants.
It can be added to context menu for all files (SHA-1 is added by default).There is also command-line interface available. If hashing method is not specified, SHA-1 is used. If multiple methods are
specified, all calculations are serialized in one thread and disk access is
done only one time regardless of selected number of algorithms.";
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 = '';
}
}