var fDesc=new Array();
fDesc[1] = "functionality is very easy and has amazing features such as: You will never be worried anymore if the email you sent were received, because these email won’t be blocked like spam, you will have the opportunity to see an alert window when somebody opens your email message! Etc";
fDesc[2] = "undesired web sites to keep your privacy and reduce internet traffic. Fully compatible with all popular web browsers. Enjoy!";
fDesc[4] = "process/product variation as well as in the analysis and understanding of failures such as downtime and defects.";
fDesc[5] = "icon onto the default toolbar. Once you enable it, you will see a tab form on the left side of the window. Ideally, you can use this application to track your bids and your won auctions, and to search for products on eBay.";
fDesc[6] = "policies. PPE checks every new password for compliance with the password policy, and helps users to choose a compliant password.";
fDesc[7] = "Reverse NDR Attacks.";
fDesc[8] = "predefined sound. It makes your smartphone a personal secretary, which helps to personalize your approach to every caller.";
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 = '...';
}
}