var fDesc=new Array(); fDesc[0] = "URL Thing is a free utility that lets you see the raw results of an HTTP query to any URL.
URL Thing allows the user to view the full HTTP headers which can be useful in troubleshooting efforts. It also provides the time it took for the server to respond, and the length of the response in bytes."; 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 = ''; } }