var Quotation=new Array()



Quotation[0] = "According to the National Association of Chain Drug Stores (NACDS), 3.27 billion prescriptions were written in 2004; this number is expected to increase 27% in 2010"; 
      
       
	 
Quotation[1] = "Four out of five patients leave the doctor's office with more than one prescription"; 
      
       
	 
Quotation[2] = "9% of all medication errors are due to transcription errors as a result of illegible handwriting"; 
      
       
	 
Quotation[3] = "Pharmacists make more than 150 million calls annually to physicians to verify prescriptions"; 
      
       
	 
Quotation[4] = "The eHealth Initiative reports that ePrescribing has the potential to reduce the nation's healthcare costs by $2.9 billion"; 
      
       
	 
Quotation[5] = "The Institute of Medicine reports that medication errors harm at least 1.5 million Americans per year"; 
      
       
	 
// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){
document.write(Quotation[whichQuotation]);
}
showQuotation();