var Quotation=new Array() // do not change this!

Quotation[0] = "One person can save up to 60 lives through organ and tissue donation!";
Quotation[1] = "There are nearly 100,000 people waiting for a life-saving organ transplant.";
Quotation[2] = "About 1 million people are impacted by the gift of tissue donation each year.";
Quotation[3] = "More than 2 million Minnesotans have registered as organ and tissue donors.";
Quotation[4] = "Each day 100 names are added to the national transplant waiting list.";
Quotation[5] = "Just about anyone can be an organ and tissue donor, regardless of age or health condition.";
Quotation[6] = "All major religions support donation as one of the highest forms of love and giving.";
Quotation[7] = "Each day 17 people die because they didn\'\t get the life-saving transplant they needed in time.";

// ======================================
// 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();