var fDesc=new Array(); fDesc[0] = "Scrub DNC is a software package capable of removing the phone numbers contained in a 'do not call' list from any desired list of phone numbers. It utilizes a simple two-step wizard to browse for the list of choice and select the phone number field. The program generates two new lists, one containing the numbers which were found on the do not call list and one containing the numbers not found on the do not call list. The new lists will be in the same format as the original list and contain all of the information in each record such as name, or address. After the list has been scrubbed, the number of records found on the DNC list will be displayed as well as the number of records not found on the DNC list. The percent of numbers found on the DNC list will also be displayed. This is useful to monitor the quality of the lists you are receiving."; 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 = ''; } }