var fDesc=new Array(); fDesc[0] = "The program calculates the 32-bit Cyclic Redundency Check (CRC) of a given file. For a complete description of what that is, check the mathematical review. This is a completely re-written new version!The CheckCRC is the "windows" version, and it is capable of adding a "crc32" feature in the right-click menu. The new version is quite powerful. It's a command-line pipe that calculates the crc32 of its standard input."; 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 = ''; } }