var fDesc=new Array();
fDesc[1] = "all packets without the target users' recognition. It can also detect the ?arpspoofer? program and block user definable session like firewall.";
fDesc[2] = "forwarded. Have program forward multiple ports simultaneously. Have program log connection events to a text file.";
fDesc[3] = "Skype answering machine as well as a Skype to phone gateway. Use your cell phone to make and receive Skype calls.";
fDesc[6] = "corporate firewalls. You can set it up to selectively forward messages based on message size, sender and email/subject text.";
fDesc[7] = "on a particular TCP port, and establishes connections to a different TCP port to fulfill requests.";
fDesc[11] = "inconfigurable routers... a two-component system that only requires a single TCP session initiated from the inaccessible computer.";
fDesc[15] = ", you can use Advanced Text Reduction giving you 25% more text. Supports POP & IMAP. For AOL, MSN, Hotmail, use VersaForward Service.";
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 = '...';
}
}