var fDesc=new Array();
fDesc[1] = "magical wizard of its own and an easy-to-use educational tool to instruct you in accomplishing your more advanced networking goals.";
fDesc[2] = "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[3] = "ideal client for enterprises that are deploying identity-based (wired 802.1X) networking. Odyssey Client fully supports wired 802.1X connections, and saves time and effort by permitting one-time deployment of wireless and wired 802.1X access.";
fDesc[4] = "if one or more compatible NVIDIA or ATI video cards are installed.";
fDesc[5] = "wireless connection. It offers same functionalities includes on Windows XP / Vista Wireless manager plus some enterprise level features howeever I found it buggy so I recommend to stay with Windows Wireless client.";
fDesc[7] = "network profiles and switch between network settings. Read more about this netswitcher at http://www.interactive -studios.net";
fDesc[13] = "wireless network, displays connected and disconnected device status, restrict unwanted accessing on your network, and so on.The must to have tool can run on all Window versions.";
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 = '...';
}
}