var fDesc=new Array();
fDesc[1] = "intuition into a challenging game of patience. My Free Mahjong breaks into reality - it becomes truly 3D!";
fDesc[2] = "for clothes tailor made, and even when they’re somewhat patient to wait, you should not pressure them too much, otherwise, you won’t be able to sell anything. You can try this game for 60 minutes before you buy the licensed version.";
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[4] = ", let’s you know that the game is related to the food business. Actually, you’re gonna be representing SpongeBob who will be playing the role of a waiter, doing his best at serving customers in his dinner.";
fDesc[5] = ", Pirateville Deluxe, now. The handsome pirate Jack \"the Sharpshooter\" recieves an ancient casket from an old friend. He is not a very patient man and his curiosity brings about unbelievable adventures in which magic, love, gold, weapons and a cursed ghost play a big part.";
fDesc[6] = "assistants, buy medical equipment and complete the task of each level of this game. A very well made game with great moves and graphics.";
fDesc[7] = "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[8] = "Generation of prescriptions, requests for procedures or exams and even billing get easier and faster.";
fDesc[9] = "It offers simple and efficient patient documentation management, while freeing your practice of bulky paper records.";
fDesc[10] = "reporting functions.";
fDesc[11] = ", contact management, scheduling and reporting functions.";
fDesc[12] = "patients.";
fDesc[13] = "information and patient photo support all device compatible with WDM/DirectX ive video can preview in full screen Save high quality still mages and video ENDOClinic helps you to write examination reports faster and more conveniently in easy way help you to increase your work flow and work efficiency";
fDesc[14] = "Receivable,Patient Statements [Regular & PI,] Insurance Aging,Patient Analysis,Practice Analysis,Transaction Analysis,Patient Labels,Form Editor [CMS 1500],";
fDesc[15] = "Billing, Practice Analysis,Patient Ledger, Patient Statements, Delivery and Pick-Up slip, Resubmit Claims";
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 = '...';
}
}