var fDesc=new Array(); fDesc[0] = "KeePassXC can store your passwords safely and auto-type them into your everyday websites and applications. The complete database is always encrypted with the industry-standard AES encryption algorithm using a 256-bit key. KeePassXC uses a database format that is compatible with KeePass Password Safe. Your wallet works offline and requires no Internet connection. It features stand-alone password and passphrase generator; password strength meter; TOTP generation; CSV import; command line interface, and more."; 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 = ''; } }