var fDesc=new Array();
fDesc[0] = "Many Internet Service Providers (ISPs) use non-static IP Addresses. Your IP Address can change frequently. Some ISPs provide a different IP Address every time a connection is made, others provide you with the same IP Address for a few days before changing it.
Because of this, it can be very difficult to keep track of your current IP address. This becomes even more of a problem if you are running web services from your computer, or are attempting to connect to your computer remotely. Our IP helper software is the solution for the millions of users who need easy access to their IP address from their desktop or a remote location.
Features:
Displays the External IP Address, which is the IP Address that is seen from outside of your network.
Displays your Internal Network IP Address for each of your network adapters. Useful for users that are part of a network, or behind a router
Easily refresh or copy your Internal or External IP Address.
Automatically refresh your IP Address at given intervals
Can notify you remotely by email, send data to a website URL, or open a program with command line arguments whenever your IP Addresses change!
Stores a log of current and past IP addresses.
Great for Remote Desktop, FTP, Webservers, PC Anywhere, etc!";
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 = '';
}
}