var fDesc=new Array();
fDesc[1] = "USA or Canada. It has been developed by combining AutoCAD and architecture features to provide architects with the necessary library and tools for drafting, designing, drawing, creating, rendering, sharing, scheduling, dimensioning, drawing compare, etc.";
fDesc[2] = "for protection against hackers, and Anti Phishing utility to blcok \"sppofed \" spam email.Supports Multi languages.";
fDesc[3] = "to collect information like browsing habits and credit card information and send it to their creators which may pose serious threat to the user.";
fDesc[4] = "information from multiple locations and presents them in a easy to understand graphical interface.";
fDesc[5] = "security! Fast System Scanning, Live Protection Shields, Immunization and Cookie Shields stop threats before they infect your PC! FREE DOWNLOAD.";
fDesc[6] = "single Master Password gives access to all the contained data. An integrated Form Filler automates the filling in of web forms.";
fDesc[7] = "includes a Firewall for protection against hackers, and Anti Phishing utility to blcok \"sppofed \" spam email.Supports Multi languages.";
fDesc[10] = "components; sources of irritation that antivirus software does not deal with.";
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 = '...';
}
}