var Quotation=new Array() // do not change this!
var Source=new Array()
var Explanation=new Array()
 
// 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]= "La ilaha ill Allahu";
Source[0]= "The virtue of reciting it 100 times can fill in the gap between the skies and the earth";
Quotation[1]= "Allahummag-firli";
Source[1]= "Recite it 10 times and Allah Paak says 10 times that He has forgiven the reciter";
Quotation[2]= "Subhan Allah";
Source[2]= "Recite it 100 times and the virtue of it is equivalent to freeing 100 prisoners";
Quotation[3]= "Allah o Akbar";
Source[3]= "Recite it 100 times and you get the virtue of sacrificing 100 camels and that they will also be accepted";
Quotation[4]= "SubhanAllah e Wabee Ham deehee";
Source[4]= "Recite it 100 times and you get one lac 24 thousand nekiyaan";
Quotation[5]= "SubahanAllah il Azeem Wabee Ham deehee";
Source[5]= "Recite it once and one tree planted in Jannat";
Quotation[6]= "La ilaha ill Allahu wahdahu la shareeka Lahu Ahadan Samadan Lam Ya lid walam yulad walam yaku-Llahu kufuwan Ahad";
Source[6]= "Recite it once and u earn 20 lacs nekiyaan";

Explanation[0]= "";
Explanation[1]= "";
Explanation[2]= "";
Explanation[3]= "";
Explanation[4]= "";
Explanation[5]= "";
Explanation[6]= "";
Explanation[7]= "";
Explanation[8]= "";
Explanation[9]= "";
Explanation[10]= "";
Explanation[11]= "";
Explanation[12]= "";
Explanation[13]= "";
Explanation[14]= "";
Explanation[15]= "";
Explanation[16]= "";
Explanation[17]= "";
Explanation[18]= "";
Explanation[19]= "";

 
// ======================================
// 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]);}
function showSource(){document.write(Source[whichQuotation]);}
function showExplanation(){document.write(Explanation[whichQuotation]);}


