var fDesc=new Array();
fDesc[1] = "different types of information about local network computers in just a few seconds. This incredible application gives you one-click access to many useful functions such as remote shutdown and wake up, Radmin integration and lots more.";
fDesc[2] = "5.01 ensures the security between host computer and gateway by checking that the MAC address from gateway to localhost and viceversa is correct.";
fDesc[4] = "address. A MAC address is a set of numbers and letters. Ideally, a MAC address should be unique to a single device. In other words, your computer's network card and your router should not have the same address.";
fDesc[5] = "on the remote computer is hidden from you now!";
fDesc[6] = "(MAC) Address of your Network Interface Card (NIC) irrespective to your NIC manufacturer or its driver. It a very simple & easy to use utility that gives you enough information about the Network Interface Cards (NIC) installed on your computer.";
fDesc[7] = "subnets and scan the MAC addresses and IP addresses. Users can custom own scan process by specifying the subsequent threads.";
fDesc[8] = "of a computer on LAN even out of your LAN range. It's based on Microsoft Net bios technology. It also can be used for Wake On LAN.";
fDesc[9] = "have several computers on the network and need some information about them. Find MAC Address carries out a rather simple task, but it allows you to get a lot of information. It can identify the MAC address of any computer connected to your network.";
fDesc[10] = "information, search a ip geographic location.";
fDesc[11] = "the MAC addresses and IP addresses.";
fDesc[12] = "Internet activity if they know your MAC Address. Public Wireless Access Points are all over, some less se";
fDesc[13] = "MAC address as well. Gentle MAC is user-friendly, secure and reliable utility among similar products.Change your IP and MAC address simultaneously!";
fDesc[14] = "network adapter for Windows NT, 2000, XP, and Server 2003 systems.";
fDesc[15] = "network card. MAC Change also include a very useful database that contains all manufacturer of the card";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}