var fDesc=new Array(); fDesc[0] = "FilePropsMan is a Windows Explorer shell extension, which adds a two tab's to the Window Explorer file properties: "Extended Version Information" and the "File Hash Information". Extended File Information contains information about executable file with developer-defined version records, such as E-mail, BuildDate etc. And File Hash Information tab contains common hashes that are used to verify and authenticity of files: CRC-32, MD5 and SHA1 file hashes."; 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 = ''; } }