var fDesc=new Array();
fDesc[1] = "and flexible feature-rich personal information solution that will open up a whole new data storage experience for you!";
fDesc[2] = "great variety of animals with different illnesses. As the animals come to the clinic, you must register them in the receptionist desk. Then, they wait in the waiting room until you assign them to an available bed in the examining room.";
fDesc[3] = "help you a lot. My Medications List is a versatile program where you can track each of your medications with many details. Using it you can know exactly the amount of money you spend on medications, or when you need to renew prescriptions, etc.";
fDesc[4] = "tool you can send your reminder to your screen, cell phone, pager, or email. It has a very user friendly interface with an easy to use wizard for creating your reminders. Import/Export your reminders to friends or colleagues with just a few clicks. Create time and date specific, daily, weekly, monthly or yearly reminders. From now on you can stay on top of things where ever you are.";
fDesc[5] = "alarm clock. You can easily assign an MP3 or any other audio file as your alarm and alert yourself to an important event with different alarms.";
fDesc[6] = ", etc. Appointment reminder messages automatically include person, date and time, and callback number. Message customizable in Professional version, suitable for business use, such as patient appointment calls, group emergency notifications, political campaign promotions, etc. Standard message recorded by professional radio announcer. Message can include additonal audio file or text, which automatically converted to speech using advanced text-to-speech technology. Understand voice command over the phone for message replay. Very easy to use. For appointment reminders, set the contact name, phone number, appointment date and time, and the time to call in the calendar. System makes the call automatically at the specified time. Call status automatically appears in calendar.";
fDesc[7] = "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[8] = "Or use as a timer to inform you of tasks to do.";
fDesc[9] = "weekly, monthly view to ease managing events. This software also has customizable desktop clock, import/export, print function.";
fDesc[10] = "basic principles of herbal medicine, outlines the properties and characteristics of more than 290 single herbs.";
fDesc[13] = "Exchange System in addition to the USDA's Food Guide Pyramid. It can automatically generate daily menus that meet your Exchange specs.";
fDesc[14] = "prescriptions.";
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 = '...';
}
}