var fDesc=new Array();
fDesc[1] = "It includes smart scan, deep scan and a remover; it has the ability to remove found parasites. Its database contains over 33171 records.";
fDesc[2] = "Windows registry involves many, many files to work with; each one has its own purpose to make Windows program runs. The Registry File is the brain into this file it will register all the software you have in your PC with all the required parameters to run under Windows platform.";
fDesc[3] = "here is a best quality XTerm medical dictionary. This medical dictionary not only contains detailed description of medical terms but it is also full of chemical formulas and diagrams.";
fDesc[4] = "Reference Charts for Eye, Heart and Digestive System are added for registered owners.";
fDesc[5] = ", Boericke's Materia Medica (abbr: 100 remedies with cross-references), Hahnemann's Organon of Medicine (complete 6th edition).";
fDesc[6] = "viewer that is included with the Microsoft .NET Framework 3.0, you receive the following error message: Cannot open this document because your permissions have expired. Note The XPS viewer is a component of the .NET Framework 3.0. The .NET Framework 3.0 is included with Windows Vista.";
fDesc[7] = "It involves the insertion of needles at particular points in the body. It is very helpful for a wide range of disorders in the body like arthritis, infertility, etc.";
fDesc[8] = ", Homeopathy, Diagnostic Aids, Tonics, Rejuvenation, Phytochemicals, Parasites, Poisons / Antidotes, Immune System, and Color therapy.";
fDesc[9] = ", neurotransmitters, enzymes, autosuggestion, tonics, natural remedies and strengtheners of the immune-system.";
fDesc[10] = "people with asthma, or carer's of one or more children who suffer from asthma. Can be used on a daily or monthly basis.";
fDesc[11] = "money. Easily keep a detailed record and charting of where you money is going in vehicle repairs, and allows you to eliminate the problem.";
fDesc[12] = "display reminders, play sounds, execute programs, open websites and even shutdown computer at a specific time.";
fDesc[13] = "functions are managed automatically. You don't need to know anything about neural networks.";
fDesc[14] = "depression symptoms with this small application that you can access from your desktop with 2 clicks.";
fDesc[15] = "computer and forcing you to take a 5-minute break every 30 minutes.";
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 = '...';
}
}