// JavaScript Document
function GetQuickFacts(scategory)
{
var timeHospice = new Array(3);
timeHospice[0] = "Hospice emphasizes quality rather than quantity of life. ";
timeHospice[1] = "Hospice is about hope.";
timeHospice[2] = "Hospice is an option when goals shift from curing the illness to focusing on comfort.";

var livingIllness = new Array(5);
livingIllness[0]="We offer free in home visits";
livingIllness[1]="Medications, equipment and supplies related to the illness are provided by hospice";
livingIllness[2]="\"Tuck-in\" calls are provided an extra personal touch and to check on our patients";
livingIllness[3]="Patient can stop hospice if they desire and resume at a later date";
livingIllness[4]="Request our free \"Voices of Hospice\" DVD featuring families whose lives we have touched";

var planningAhead = new Array(4);
planningAhead[0] = "Are You Planning Ahead";
planningAhead[1] = "If you do not prepare a will, your property will be distributed according to your state's law.";
planningAhead[2] = "A Power of Attorney allows you to choose someone to handle your affairs if you cannot do so yourself.";
planningAhead[3] = "Advance directives are legal documents that describe your wishes for end of life care.";

var caringSomeone = new Array(5);
caringSomeone[0]="We offer free in home visits";
caringSomeone[1]="Volunteers are available for chores, errands and friendly visits";
caringSomeone[2]="We provide physical, emotional and spiritual support";
caringSomeone[3]="Bereavement services are provided for 13 months";
caringSomeone[4]="Request our free \"Voices of Hospice\" DVD featuring families whose lives we have touched";

var youGrieving = new Array(3);
youGrieving[0] = "Our bereavement care is available for up to 13 months after the passing of your loved one.";
youGrieving[1] = "Hospice provides emotional support to the family"; 
youGrieving[2] = "Our social workers can connect you to local support groups ";

var healthProf = new Array(6);

healthProf[0]= "Our patients do not need to be DNR";
healthProf[1]= "Our patients may receive chemotherapy or radiation for symptom relief";
healthProf[2]= "Now Means Now - assessments are made within four hours";
healthProf[3]= "Hospice is for patients with a variety of illness, not just cancer";
healthProf[4]= "We provide all four levels of hospice care: Routine Home Care, Inpatient Care, Continuous Care, Respite Care";
healthProf[5]= "Request our free \"Voices of Hospice\" DVD to help explain hospice to your patients";

var nursingProf = new Array(7);
nursingProf[0]= "Our patients do not need to be DNR";
nursingProf[1]= "Our patients may receive chemotherapy or radiation for symptom relief";
nursingProf[2]= "Now Means Now - assessments are made within four hours";
nursingProf[3]= "We have inpatient hospice facilities in Lillington and Fayetteville";
nursingProf[4]= "Hospice is for patients with a variety of illness, not just cancer";
nursingProf[5]= "We provide all four levels of hospice care: Routine Home Care, Inpatient Care, Continuous Care, Respite Care";
nursingProf[6]= "Request our free \"Voices of Hospice\" DVD to help explain hospice to your patients";

var ourClergy = new Array(3);
ourClergy[0]= "Speaking with our Clergy is optional";
ourClergy[1]= "Hospice respects all beliefs";
ourClergy[2]= "Hospice provides spiritual support";

var yourPets = new Array(4);
yourPets[0]= "To ensure that your beloved pet continues to receive the care you want, it's critical to plan ahead";
yourPets[1]= "A bequest in your will or living trust is an easy way to protect your pets";
yourPets[2]= "Living trust can be but into immediate effect upon your death";
yourPets[3]= "Your lawyer can help you develop a plan that will ensure for the care of your pets";

var volunteer = new Array(4);
volunteer[0]= "Volunteers play a vital role in hospice";
volunteer[1]= "Our volunteers receive in depth training";
volunteer[2]= "Volunteers provide different types of support ";
volunteer[3]= "Volunteers running errands, provide companionship and emotional support as well as allow caregivers to take a break";

var career = new Array(4);
career[0]= "A career in hospice is extremely rewarding ";
career[1]= "Hospice is considered a special kind of caring";
career[2]= "We provide an opportunity to serve with highly committed people who profoundly enrich the quality of life for our patients";
career[3]= "You’ll be part of a team who serves and extraordinary mission"

var serviceArea = new Array(2);
serviceArea[0]= "CHC&H serves patients throughout most of North Carolina";
serviceArea[1]= "If you are not in our service area, we can help you locate a hospice provider";

var learnHospice = new Array(3);
learnHospice[0]= "The Community Hospice Foundation raises funds to support the crusade against life-limiting conditions";
learnHospice[1]= "The Foundation contributes to community awareness and education, scholarships and research";
learnHospice[2]= "We contribute to programs that engage in the practical ministry of indigent care while honoring those we serve";
 
var media = new Array(6)
media[0] = "Hospice profoundly improves the quality of life for patients and their families";
media[1] = "Earlier access to hospice care brings superior end-of-life care to patients and their families";
media[2] = "More than one million Americas die every year without receiving the support of hospice care";
media[3] = "Community Home Care & Hospice is the largest hospice provider in the state of North Carolina. ";
media[4] = "Founded in 1995, by Carrolton Management Company under the direction of C. Saunders Roberson, Jr., the corporation has expanded. ";
media[5] = "Our rapid growth has occurred due to our mission to serve the under served, response on a 24 hour a day, 7 day a week basis and, to provide professional care with personal concern. ";

document.write("<table width=\"209\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td><img src=\"/PORTALS/0/SKINS/CHCH/images/QuickFactsTop.gif\" width=\"209\" height=\"45\" /></td></tr><tr><td background=\"/PORTALS/0/SKINS/CHCH/images/QuickFactsBG.gif\"><table width=\"209\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td width=20>&nbsp;</td><td><p class=quickfact>");


	switch (scategory)
	{
		case "timeHospice": var whichFact = Math.round(Math.random()*(2));
				document.write(timeHospice[whichFact]);
				break;
		case "livingIllness": var whichFact = Math.round(Math.random()*(4));
				document.write(livingIllness[whichFact]);
				break;
		case "planningAhead": var whichFact = Math.round(Math.random()*(3));
				document.write(planningAhead[whichFact]);
				break;
		case "caringSomeone": var whichFact = Math.round(Math.random()*(4));
				document.write(caringSomeone[whichFact]);
				break;
		case "youGrieving": var whichFact = Math.round(Math.random()*(2));
				document.write(youGrieving[whichFact]);
				break;
		case "healthProf": var whichFact = Math.round(Math.random()*(5));
				document.write(healthProf[whichFact]);
				break;
		case "nursingProf": var whichFact = Math.round(Math.random()*(6));
				document.write(nursingProf[whichFact]);
				break;
		case "ourClergy": var whichFact = Math.round(Math.random()*(2));
				document.write(ourClergy[whichFact]);
				break;
		case "yourPets": var whichFact = Math.round(Math.random()*(3));
				document.write(yourPets[whichFact]);
				break;
		case "volunteer": var whichFact = Math.round(Math.random()*(3));
				document.write(volunteer[whichFact]);
				break;
		case "career": var whichFact = Math.round(Math.random()*(3));
				document.write(career[whichFact]);
				break;
		case "serviceArea": var whichFact = Math.round(Math.random()*(1));
				document.write(serviceArea[whichFact]);
				break;
		case "learnHospice": var whichFact = Math.round(Math.random()*(2));
				document.write(learnHospice[whichFact]);
				break;
		case "media": var whichFact = Math.round(Math.random()*(5));
				document.write(media[whichFact]);
				break;
	}
	
document.write("</p></td><td width=50>&nbsp;</td></tr></table></td></tr><tr><td><img src=\"/PORTALS/0/SKINS/CHCH/images/QuickFactsBottom.gif\" width=\"209\" height=\"34\" /></td></tr></table>");
	
}