var fDesc=new Array(); fDesc[0] = "CopGun controls user access through an Admin Window, where the program administrator can create a list of people authorized to use the software, a unique password for each person, and the access level that user is allowed (View Records only, View & Edit Records only, View, Edit, & Delete Records, or Full Access-- View, Edit, Delete, and Add Records). Once a user is listed in the User List, he can select his name, enter his password, and use CopGun within the restrictions of his access level privileges."; 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 = ''; } }