var fDesc=new Array();
fDesc[0] = "EZNetInfo is a tool I created that allows you to know your current IP address at a glance, without having to go through several screens. Simply hover your mouse over the blue, yellow and green circle icon in your system tray, and your current IP address that your local area network card is using will be displayed.
If you want more information, simply right click the icon, and choose details from the menu. The Details screen shows much more information in a simple and clean interface.
At the top of the Details screen you will see the list of installed network adapters in your PC. Simply click the network adapter you wish to have more information on, and on the form below, a wealth of information is available.";
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 = '';
}
}