var fDesc=new Array();
fDesc[0] = "ClientIP Checker is a Windows tool that allows you to always keep track of your current IP, external and internal.
The IP adress is the most commonly used information for identifying a visiting client.
Main Features:
- Select whether you want to display internal or external IP in system tray
- Select update interval
- Copy IP to clipboard
- Direct link to detailed client information";
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 = '';
}
}