// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

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

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "Expired medicines were found in Doctors Hospital's pharmacy. <a href='/reports/Doctors-Hospital-Pharmacy-Report.pdf'>Click here for drug inspection report</a>";
Quotation[1] = "Only 0.5% of the total budget of Pakistan is allocated to healthcare sector";
Quotation[2] = "More than 50% of medicines avaialable in market are spurious (fake) - Rana Sana Ullah (Law minister) claimed on TV";
Quotation[3] = "There is no law in Pakistan for private hospitals, a license is required to open a pharmacy but no permission or license is needed to open an hospital";
Quotation[4] = "Its been 62 years and still PMDC (Pakistan Medical & Dental Council) has not come up with a dental policy, what a shame!";
Quotation[5] = "Punjab Govt. suggested a new healthcare bill but PMA (Pakistan Medical Association) rejected it completely, may be they don't want any accountability. <a href='/reports/Healthcare-Bill.pdf'>Click here to download a copy of health care bill</a>";
Quotation[6] = "Doctors Hospital's post operation infection rate is one of the highest";
Quotation[7] = "We have received emails from more than 180 victims of Doctors Hospital";

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

