var fDesc=new Array();
fDesc[1] = "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[2] = "appointments, have a record of patients, and mark important events. Adding a patient is really easy, you just include his/her name, phone, and add as many other data as you want.";
fDesc[3] = "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[4] = "increasing productivity as simple ?viewing and clicking?. Try our Free Demo";
fDesc[5] = "calendar, a powerful, searchable journal, expense and mileage trackers, password protection, and more.";
fDesc[7] = "share data in real time over the network. The ideal alternative to manually tracking patients.";
fDesc[8] = "user-friendly interface and lots of useful features of the Pet Sitter ensure saving time and effort and for the quality pet sitting!";
fDesc[10] = "each suit is depicted by a different flower. Each flower is representative of a calendar month around the time it comes into bloom. Indeed, the cards ...";
fDesc[11] = "and booking appointments, replacing your appointment book. Allows sharing of scheduling data on multiple computers.";
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 = '...';
}
}