var fDesc=new Array(); fDesc[0] = "IP-Lister is a small utility that will resolve all IP address of a hostname and the hostname of any IP. Just type the hostname or IP, click Retrieve, and you have a list of all IP addresses associated with that hostname or the hostname associated with the IP."; 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 = ''; } }