var fDesc=new Array(); fDesc[0] = "Checksum Verify is an easy to use application to verify and create checksum files. A checksum is a value calculated from the content of a file by special algorithms. These algorithms are designed in a way that even the slightest change in the file will cause an absolutely different checksum value. This information of the checksums can be used for revealing damaged 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 = ''; } }