var fDesc=new Array(); fDesc[0] = "File Hash Checker is a tool which allows you to compute the MD5 and SHA1 hash of any file. It also allows you to check the computed hash against a database of known MD5 and SHA1. Currently this database only contains the hashes from ISO of Microsoft products like Windows 7, Windows Vista, Office, in English and French. This application is WPF based and uses a new feature of Windows 7 to display a progress bar in the taskbar. It supports shell integration- right click on any file, and click "Compute MD5 and SHA1" to launch this application and compute the hash."; 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 = ''; } }