var fDesc=new Array(); fDesc[0] = "IP Viewer Tool shows your public and local IP address and maintains a log of the changes. This application is very handy because when you are behind a router is not possible to get your public (WAN) IP address. The IP log can be easily exported to HTML or Excel CSV."; 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 = ''; } }