var fDesc=new Array(); fDesc[0] = "Notepad-like simple text editor for Windows, where files are saved and loaded encrypted with AES algorithms. Features: Drag and Drop support Detect URLs and email links Fully customizable editor. Able to customize the colors and fonts Able to customize different parameters of the encryption (hash algorithm, key size, password iterations, salt) Included all the features of the default Windows Notepad Association with the application extension."; 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 = ''; } }