var fDesc=new Array();
fDesc[1] = "missions that will give you the ability to manage successfully your own zoo. The tasks involve subduing, cleaning, feeding and healing skills. During the game you will be guide by the tutorial, that will make easier completing the tasks.";
fDesc[2] = "is an ancient form of healing. Natura Sound Therapy has many features that make it a very good program. It uses both sound frequencies and visual content to make us concentrate and focus when doing some important job and also to relax by the special sound frequencies.";
fDesc[3] = "introduction showing the arrival of Dr. Humerus to the Heartland Hospital. Needless to say, you will be guiding Dr. Humerus in his quest to gain fame and fortune by healing patients and exploring the world.";
fDesc[5] = "internet viruses, worms and Trojans, macro viruses and old executable viruses. It´s objectives are summarized in: Reability of healing viruses, fast scanning speed and a feature that everybody wants; does not disturb, because works in background.";
fDesc[6] = "bootable CD that brings you the ability to search, detect and clean virus threats in any computer running Windows.";
fDesc[7] = "have been used for many years and several cultures for healing purposes. It’s suitable to be used during meditation sessions.";
fDesc[8] = ", Homeopathy, Diagnostic Aids, Tonics, Rejuvenation, Phytochemicals, Parasites, Poisons / Antidotes, Immune System, and Color therapy.";
fDesc[10] = "metaphysical areas like Numerology, Healing, Meditation, Chakra, OBE, Charging Water and Crystals, and Plant Growth, for example. The program allows you to study and create tones and tone frequencies that can assist in clearing thoughts.";
fDesc[11] = "haven't been able to find any reasonably priced purchasing software, this is the answer.";
fDesc[12] = "shiatsu self massage. The program is simple and very useful for people of all ages.";
fDesc[13] = "relax, heal yourself and free your mind from all sorts of tensions, stresses and strains.";
fDesc[14] = "extremely simple and very useful for people of all ages who would like to practice crystal healing or crystal therapy.";
fDesc[15] = "different planets in different signs on the various aspects of our personality.";
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 = '...';
}
}