var fDesc=new Array(); fDesc[0] = "Allows secure storage of sensitive personal and corporate information in a Microsoft SQL Server database. The application allows multiple users to maintain one or more username / password protected accounts and tracks the following information for each data record: username, password, short description, long description, website URL and 'other' information.

All data records remain encrypted in Microsoft SQL Server database tables and cannot be viewed by users with read permissions on the database."; 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 = ''; } }