var fDesc=new Array(); fDesc[0] = "This program checks for duplicates (including partials), lists the sections (which change color when they have been worked), lists all contacts, writes ASCII log, dupe and summary files, and provides many current statistics. One of the nicest features is that the program allows you to tab automatically without pressing tab or space bar (although you can if you want to). Just type the exchange, and the program will jump from one field to the next automatically.

This program is designed to access a common log file on any PC on your local area network (LAN). This of course assumes that you have configured your network properly, enabled sharing, etc"; 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 = ''; } }