var fDesc=new Array(); fDesc[0] = "When you use the internet, your computer has a unique number which identifies your computer to other computers on the internet. This unique number is known as the computer's IP (Internet Protocol) Address.
For most people, when they connect to the Internet, their ISP (Internet Service Provider) automatically allocates an IP address for the duration of that connection.
There are times when we need to know what IP Address the ISP has allocated to our computer. This can be difficult and irritating to find. So now there is a simple, free application to take the hassle out of it all.

ipAddress is a simple utility that displays the IP Address(es) currently allocated the users computer."; 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 = ''; } }