var fDesc=new Array();
fDesc[1] = "features. SMS service helps you to send messages to people's mobile phones. I like Yahoo Messenger mainly because of its stealth settings. Games can be played on Messenger. All of these features make Yahoo Messenger the best Messenger software.";
fDesc[2] = "Security... that won?t slow you down!";
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] = "down your PC. Home network security management from a single location. BitDefender software can be remotely configured from other computers in the network , and tasks such as scans, backups tune-ups and updates can be scheduled to run during off-hours.";
fDesc[5] = ", rootkits, trojans, worms and malware in general, in all folders,diretories and all kind of files. The user can select the way of updating, the scan to be performed, the scanning schedule, and the paths to be scanned.";
fDesc[7] = "viruses, spyware, phishing attacks, and rootkits. The program features a simple and intuitive user interface, which makes it really easy to use. The application scans files during boot, recently accessed files, packed files (although not archived files) and incoming and outgoing e-mails.";
fDesc[9] = ", tailored to meet the needs of computer users worldwide.";
fDesc[10] = "Features as easy to use and automatic updating make BitDefender Antivirus v10 an \"install and forget\" antivirus product.";
fDesc[13] = ", tailored to meet the needs of home and corporate Internet users worldwide.";
fDesc[14] = "like any popular antivirus program. Nevertheless, BD has a standalone feature and that is it provides proactive protection for our computer against viruses, trojans, spywares,rootkits, phishing,identity theft, hackers and other security threats, while we play all types of games online.";
fDesc[15] = "slowing down your PC. Confidently download, share and open files from friends, family, co-workers – and even total strangers. BitDefender scans all web, e-mail and instant messaging traffic for viruses and spyware in real-time.";
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 = '...';
}
}