var fDesc=new Array();
fDesc[1] = "advanced users. The program features a simple and intuitive Explorer style interface that shows the local and remote folders in a clear way and allows you to customize them the way your want.";
fDesc[2] = ", protected, and keep it far away from external attacks, such as viruses, Trojans, adware, malware, spyware and all types of unsolicited activities while connected to the Internet both at work and at home.";
fDesc[3] = "proactive protection against virus, malware, adware, intruders attack, spam, Trojans, spyware and other malicious applications that run without our authorization, and can cause computer crash, and serious security and privacy problems.";
fDesc[4] = "for all TCP connections (including IPv6) Configurable update speed makes it more user friendly and easy to customize.";
fDesc[7] = "of subnet bits or the maximum amount of subnets you want, then the host bits number or the number of maximum desired hosts. This input will give you a complete subnets table along with their bit-by-bit addresses.";
fDesc[9] = "when problems strike. Create scripted response scenarioes that execute when alarms are triggered.";
fDesc[12] = "via UDP and TCP protocols, and works in IPv4 and IPv6 networks, records, stores, organizes and displays syslogs.";
fDesc[13] = "for quick conversions and for getting used to the up-and-coming IPv6 address format. IPConvert is FREEWARE.";
fDesc[15] = ", applications, user interfaces, presentations, mobile device content, and other digital experiences. Get everything you need to prototype your project, design assets, build web experiences, and efficiently maintain and update content.";
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 = '...';
}
}