var fDesc=new Array(); fDesc[0] = "EncryPad is a simple plain text encryption with an interface very similar to Windows Notepad. The program allow you to use a password, if you want to save the text in encrypted format but if you don't specify a password, you will be able to save it only as a text file. English and Greek languages are supported, through the Help menu."; 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 = ''; } }