var fDesc=new Array(); fDesc[0] = "Simple freeware program to simulate Simplified DES.You can use the program for educational use, personal use, commercial use or whatever you want.DES ( The Data Encryption Standard) is a block cipher that uses shared secret encryption. DES is the archetypal block cipher an algorithm that takes a fixed-length string of plaintext bits."; 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 = ''; } }