var fDesc=new Array(); fDesc[0] = "SRRouterDetector looks at the "hops" required to get from your computer to the Internet, each hop representing an IP address. The program will analyze your network and tell you if you have 1 or 2 routers, and try to figure out their brand for you. At each hop, it attempts to communicate with a router. If it finds a router, then it checks a keywords database to identify which kind of router it is."; 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 = ''; } }