var fDesc=new Array(); fDesc[0] = "YourWanIP is a small discrete application. Its purpose is to display your current internet IP, and inform you if it changes. If you want to incorporate the WAN ip into your own programs or scripts using C#, VB.net, Javascript, VB Script or Powershell a guide will tell you how to accomplish this. The WAN IP is 'your' signature when your machine communicates with servers on the internet. MyWanInfo collects your internet ip when it starts, and then periodically. If it discovers any changes, it will verify the result multiple times, before registering the change. This is to avoid registering smal nework outages, that might occur from time to time."; 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 = ''; } }