var fDesc=new Array(); fDesc[0] = "RTG Names stores names, addresses, phone numbers, and e-mail addresses. A few keystrokes or mouse clicks will find any name and phone number among thousands of entries.
Click a button to copy the selected name and address to the Windows clipboard. Or click a different button to copy the e-mail address to the clipboard."; 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 = ''; } }