var fDesc=new Array();
fDesc[1] = "the virus via collecting all necessary ingrediants.";
fDesc[2] = "Reference Charts for Eye, Heart and Digestive System are added for registered owners.";
fDesc[3] = ", Boericke's Materia Medica (abbr: 100 remedies with cross-references), Hahnemann's Organon of Medicine (complete 6th edition).";
fDesc[4] = "take a victory over the virus via collecting all necessary ingrediants.";
fDesc[5] = ", Homeopathy, Diagnostic Aids, Tonics, Rejuvenation, Phytochemicals, Parasites, Poisons / Antidotes, Immune System, and Color therapy.";
fDesc[6] = "result-oriented solutions. Lal Kitab Explorer has the complete set of charts as in the Lal Kitab itself.";
fDesc[7] = "screensaver will take you on a journey to the bottom of the sea, where you will be able to discover many of the hidden wonders of this place. However, today’s exploration will be dedicated only to those gelatinous inhabitants of the ocean: Jellyfish.";
fDesc[8] = "Windows systems Unset or blank passwords for user and Administrative accounts Enabled Guest Account Unencrypted Wireless Network Shared Folder";
fDesc[9] = "Therapies.";
fDesc[10] = ", neurotransmitters, enzymes, autosuggestion, tonics, natural remedies and strengtheners of the immune-system.";
fDesc[11] = "remedies, a foot reflexology chart and important safety tips and information.";
fDesc[12] = "check at all times. It includes scientific studies, videos and information about natural products, nutrition and health.";
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 = '...';
}
}