// JavaScript Documentfunction elem(id){ //compatible element grabber	//alert ("Getting the element");	if(document.all) { return document.all(id); }	else if (document.getElementById) { return document.getElementById(id);}	return new Array(); //hides angry errors in buggy situations}function answers(which){	if (which=="whatis")	{		elem("answers").innerHTML = "<h3>What is Health Risk Management?</h3><p>Health Risk Management is providing preventive comprehensive healthcare.  Our pharmacists directed program includes risk assessments and screenings, group health education presentations, individual consultations and medication management.</p>";	}	if (which=="whyis")	{		elem("answers").innerHTML = "<h3>Why is Health Risk Management important?</h3><p>Chronic health conditions are often hidden enemies silently threatening the health of your employees and your company.</p>";	}			if (which=="whatdoes")	{		elem("answers").innerHTML = "<h3>What does Health Risk Management have to do with Employee Productivity?</h3><p>Absences and productivity issues cost employees three time their medical expenses</p>";	}			if (which=="diabetes")	{		elem("answers").innerHTML = "<h3>What is the impact of Diabetes?</h3><span class='list'>&bull; 17 million Americans have Diabetes</span><br /><span class='list'>&bull; Economic costs for Diabetes totaled $98 billion in 2002</span><br /><span class='list'>&bull; Nearly 88 million disability days are lost due to Diabetes</span><br /><span class='list'>&bull; An average of 8.8 work days were lost for people with diabetes compared to 1.7 days for people without diabetes</span><br />";	}			if (which=="coronary")	{		elem("answers").innerHTML = "<h3>What is the impact of Coronary Heart Disease?</h3><span class='list'>&bull; 12.4 million Americans have Coronary Heart Disease.</span><br /><span class='list'>&bull; Economic cost for CHD totaled $329 billion in 2002</span><br />";	}			if (which=="value")	{		elem("answers").innerHTML = "<h3>What is the value of a Health Risk Management program? </h3><span class='list'>&bull; Improvement in management of healthcare costs</span><br /><span class='list'>&bull; Decrease in hospitalizations and costs</span><br /><span class='list'>&bull; Decrease in employee absenteeism</span><br /><span class='list'>&bull; Increase in employee productivity</span><br /><span class='list'>&bull; Improvement in management & utilization of medications</span><br /><span class='list'>&bull; Empowerment employees to achieve their healthcare goals</span><br /><span class='list'>&bull; Improvement in employee quality of life</span><br /><span class='list'>&bull; Prevention of chronic illness & disability</span><br style='clear:both;'/><h4>What makes our pharmacy staff unique?<br />Our staff has:</h4><span class='list'>&bull; Advanced training and education specializing in disease state management </span><br /><span class='list'>&bull; Experience in providing health risk management</span><br /><span class='list'>&nbsp;&nbsp;&nbsp;&nbsp;&bull;&nbsp;&nbsp;Pharmaceutical Case Management with the state of Iowa for Medicaid patients</span><br /><span class='list'>&nbsp;&nbsp;&nbsp;&nbsp;&bull;&nbsp;&nbsp;Health Risk Management with Dairy Pak</span><br /><span class='list'>&bull; Knowledge about medications  & cost issues</span><br /><span class='list'>&bull; Knowledge of alternative therapies</span><br /><span class='list'>&bull; Ability to effectively communicate and work together with healthcare providers</span><br /><span class='list'>&bull; Opportunity to mentor, encourage & work one-on-one with employees</span>";	}			if (which=="gettingstarted")	{		elem("answers").innerHTML = "<h3>Getting Started...</h3><h4>Step 1<br />&nbsp;Initial Screening</h4><span class='list'>&bull; Brief Patient  & Medication History</span><br /><span class='list'>&bull; Blood Pressure and Pulse</span><br /><span class='list'>&bull; Coronary  & Diabetes Risk Assessment</span><br /><span class='list'>&bull; Fasting Lipid Profile & Blood Glucose</span><br /><span class='list'>&bull; Weight with Body Mass Index</span><br /><span class='list'>&bull; Body Fat Analysis</span><br /><span class='list'>&bull; Consultation with Pharmacist to review results</span><br /><p><b>Analysis of data collection to identify areas of health risk management which would be beneficial for employees.</b></p><h4>Step 2<br />&nbsp;Health Risk Management Programs</h4><span class='list'>&bull; Diabetes </span><br /><span class='list'>&bull; Heart Smart</span><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&bull;&nbsp;&nbsp;Cholesterol<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&bull;&nbsp;&nbsp;High Blood Pressure<br /><span class='list'>&bull; Smoking Cessation</span><br /><span class='list'>&bull; Asthma</span><br /><span class='list'>&bull; Healthy Weight Loss</span><br style='clear: both;'/><h4>General Components of Management Programs</h4><span class='list'>&bull; Blood pressure, pulse, & weight</span><br /><span class='list'>&bull; Patient history and update</span><br /><span class='list'>&bull; Medication review for compliance, understanding, proper technique,  & cost <br />&nbsp;&nbsp;&nbsp;&nbsp;containment</span><br /><span class='list'>&bull; Evaluation of current healthcare goals & establishment of a plan to achieve new <br />&nbsp;&nbsp;&nbsp;&nbsp;goals</span><br /><span class='list'>&bull; Disease state & medication education</span><br /><span class='list'>&bull; Identification and resolution of drug therapy problems</span><br /><span class='list'>&bull; Communication with physicians and other healthcare providers</span><br style='clear: both;'/><h4>Health Risk Management Data Reports</h4><span class='list'>&bull; <b>For more information, please contact Matt Osterhaus or Tammy Bulock.</b></span>";	}}