var fDesc=new Array(); fDesc[0] = "A handy little freeware utility to assist in one of life's annoying little tasks... converting those Name-style Alphanumeric telephone numbers into straight numbers for easy dialing. It also includes a handy little area code lookup feature so you can quickly search to see where a particular area code is located in the U.S. or to find out the area code for any city or state (Internet Connection required)"; 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 = ''; } }