var fDesc=new Array();
fDesc[0] = "EasyNetTool is a small network debugging tool-package which includes several advantages:
- Minimize EasyNetTool to the system tray which cleans up the taskbar
- Ability to store the history even if the software is closed and re-opened at a later time
- Several tools included in one toolbox which eliminates even more programs in the taskbar
- Start up the application at windows startup, minimized startup is also possible
- One does not have to write "Ping" before the address/ip one wishes to ping
- Resolve MACs without having to manually access the ARP tables on the 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 = '';
}
}