var fDesc=new Array(); fDesc[0] = "Yellow Pages Spider is a tool that searches in the most popular "yellow pages" directories and extracts important information like business name, address, phone number and email. You can enter a category and location, then do a search and when you get the first page of data click the “Get Data!” button to extract the information."; 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 = ''; } }