var fDesc=new Array(); fDesc[0] = "MemoPassword is a simple password manager that lets you store your user IDs, passwords, account numbers, credit card information, and other textual data. It provides a password list, which can be populated with your information. Each entry can have a username, passwords, web address, title, description, and note. You can create any number of categories and group your passwords among them. All your data are stored in a database file, which can be easily backed-up."; 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 = ''; } }