var fDesc=new Array(); fDesc[0] = "Aconiac Password Generator attempts to be a decent and user friendly password generator, that will integrate itself into the user's everyday work. The program provides you the option to custom the password length or you can choose from presets like medium, strong and paranoid. Also advanced settings are provided to customize character sets (0-9, a-z, A-Z, exotic charters, etc)."; 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 = ''; } }