var fDesc=new Array(); fDesc[0] = "Perform searches for people in the USA by state, county, and city. Elite People Search provides the name, addresses, phone numbers, and age associated with an individual from public records.

Main Features:

- Elimination of duplicate search results
- Elimination of extraneous search results
- Multiple searches at once
- Searches by state, county, and city
- Detection of multiple phone numbers matching to one person
- Detection of multiple ages matching to one person
- Printing of search results
- Tabular display and manipulation of search results"; 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 = ''; } }