var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to manage contacts and communications with them in a custom database. The three tabs: General, Calls, and Additional Info allow management of both contact information and communications. The "Calls" tab, unique to this software, allows tracking of previous calls and planning for future communications. The user can generate chronological reports of call history, choosing either a summary or a detailed report. This software offers all the usual contact fields and more. The user-friendly interface provides many shortcuts to simplify planning."; 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 = ''; } }