var fDesc=new Array();
fDesc[1] = "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[2] = "Impersonating Charlie or Hannah, a couple of just graduated doctors, you will have to cure patients with baboonic plague, bipolarbear disorder, mother goose bumps, 3rd degree sideburns and many more. They would graphically transform as you cure them.";
fDesc[3] = "pressure, blood sugar or weight. Stores multiple reading per day and calculates averages. Great software for people with diabetics and hypertension.";
fDesc[4] = "through readings and graphs that plot the input data in a clear way. The program features a beautiful, well-organized and very customizable user interface that will please anyone. Users can change the way readings are classified and the way they should be entered, and many more.";
fDesc[5] = "injections and more. Statistics give you graphical feedback of your profile, including an A1C value.";
fDesc[6] = "time periods. Such statistics can be very useful, because it can help in diagnosing diseases. The program represents statistics in a simple way using a special graph.";
fDesc[7] = "their systolic and diastolic values and their pulse rate. In the comments field the users can also add any other information they consider to be relevant.";
fDesc[8] = "insurance, contacts, allergies, illnesses, surgeries, appointments, medications, vaccinations, blood pressure, weight, glucose.";
fDesc[9] = "doctor visits. Ability to scan in documents, save studies, print emergency permission slips, charts and more.";
fDesc[10] = "create a personal health record for each member and register important information for future reference. It includes a complete alarm system to help users remember appointments with doctors, medication times and any other issues regarding health.";
fDesc[12] = "growth percentiles. If you use growth chats daily, you will find HealthWatch Pro is a very useful software.";
fDesc[13] = "their glucose test results in many different ways. All records are kept perfectly ordered by date and time. Data entry is easy.";
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 = '...';
}
}