var fDesc=new Array(); fDesc[0] = "Mihov IP King changes static IP number to a dotless format. Instead of giving your address as http://example.com or http://192.0.34.166 you can hide the numeric address and the human address and show only a set of numbers. The program calculates this numbers - in the case above the address would be http://3221234342. This is good for hiding your web page identity or to make some practical jokes on your friends. This works only with IP-based web sites and it doesn't work with virtually hosted domains."; 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 = ''; } }