var fDesc=new Array();
fDesc[1] = "home use. This program protects you from viruses and spyware and includes several modules like Instant Messaging, Internet Mail, Network Shield, Outlook Exchange, P2P Shield, Standard Shield and Web Shield.";
fDesc[2] = "e-mail, calendaring, group scheduling, to do list and more. Notes users can exchange messages via the Internet, work with any Web application, read and post topics to Internet newsgroups, search Web directories, and use X.509 certificates for security. Notes even lets you access your e-mail and other applications while you're off-line -- with full fidelity -- and gives you the option to synchronize your work later.";
fDesc[3] = "harmful threats on the internet.Bit Defender 2009 is a powerful pack including a proactive anti-virus and firewall, which now includes two-way protection and has a new intrusion detection system.";
fDesc[4] = "for access points, locate their position on a radar analyze the power of each item located, displaying their IDs and connect, an automatic mode.";
fDesc[5] = "files you send, and will send to the recipient a direct download link to those files. In order to use the service, you will need to open an account with the service.";
fDesc[6] = "or Excel documents, Windows or Outlook Express logins that you forgot or you never knew. The program works through a step by step wizard that will ask you every data needed to retrieve the password.";
fDesc[7] = ", 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[8] = "supports all flavors of internet connection including DSL, Dial UP and Optical Fiber to name a few. Not only is it an HTTP proxy but it can also act as a SOCKS, Mail, FTP, News and telnet proxy making it a very powerful application.";
fDesc[9] = "Nokia Configuration Tools you can connect your phone to a PC to access settings. The connection to PC is established via Nokia PC Suite and USB cable. IT professionals and other advanced users can modify and store settings on PC and transfer them to Nokia devices.";
fDesc[10] = "websites see the IP address of the proxy server instead of your own IP address. A4Proxy fully supports HTTPS and FTP, so you will be able to logon to secure sites and FTP directories anonymously.";
fDesc[11] = "technical support aid. This is specially useful for technicians, to have a quick overview of the system that´s causing problems. The report can be zipped and send by email through a built-in utility.";
fDesc[12] = "search engines are supported), we can see small icon on the right side of each link. A \"green\" tick means, good site. A \"yellow\" means linked to bad sites or have some threat level. A \"red\" \"X\" means, websites with virus or misleading contents.";
fDesc[13] = "book, mail folders, mail accounts, contacts, tasks, notes, calendar, journal, message rules, signatures, stationery, and all personal settings.";
fDesc[14] = "documents and images as well as in the creation of pdf files. The TWAIN-Express feature helps in sending the scanned copy directly to the printer, fax, e-mail or any other application.";
fDesc[15] = "mail to local POP3 mailboxes and do lots more. It works with all Internet Email clients (such as Eudora & Microsoft Internet Mail).";
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 = '...';
}
}