function writeH(levels) {
// fix levels of first 3 hadith
// get images for levels of hatred

// Author:Brandon Checketts
// Homepage: http://www.apeleon.net/~microbit/brandon.html
// Email: Brandon@microbits.com
// For this script and more, visit http://wsabstract.com
extraspaces = new String;
if (levels == 0) { extraspaces = "" }
else if (levels == 1) { extraspaces = "../" }
else if (levels == 2) { extraspaces = "../../" }
else if (levels == 3) { extraspaces = "../../../" }
else if (levels == 4) { extraspaces = "../../../../" }
else if (levels == 5) { extraspaces = "../../../../../" };


numQuotes=4;
qAr = new Array(numQuotes); // QuoteArray
qC = new Array(numQuotes);  // Quote category
//qLCC = new Array(numQuotes); // Quote link commentary and context
//categories of hadith
// random advantage of leaving islam

h_catn1 = ""
h_catn2 = ""
h_catn3 = ""
cat_CS = ""


//qAr [1]="\"<i></i>\" -Quran :";
// category: intolerance for non-muslims, carrot and the stick, the stick, the carrot, incorrect science, plaguiraism, exessive hatred for non-muslims___; read full context, read commentary

qAr [0]=""
qAr [1]="\"<b>Since when did monkeys get married and punished for adultery?</b><p>Bukhari, Volume 5, Book 58, Number 188:<br>Narrated \'Amr bin Maimun:" + "\"During the pre-lslamic period of ignorance I SAW A SHE-MONKEY SURROUNDED BY A NUMBER OF MONKEYS. THEY WERE ALL STONING IT, BECAUSE IT HAD COMMITTED" + " ILLEGAL SEXUAL INTERCOURSE. I TOO, STONED IT ALONG WITH THEM.\" <br>Since when did monkeys start getting married? Was Mushmmad really so insane that he participated in stoning a monkey for adultery?" ;
//qLCC[1] = "<a href=\"commentary_context\\hb_v5b58n188.htm\">Commentary</a>"
qC[1] = h_catn1

qAr [2]="\"<b>Muslims cannot inherit from non-muslims!</b><p>Muslim, Book 011, Number 3928:<br>Usama b. Zaid reported Allah\'s Messenger (may peace be upon him) as saying: \"A MUSLIM IS NOT ENTITLED TO INHERIT FROM A NON-MUSLIM, and a non-Muslim is not entitled to inherit from a Muslim.\"";
//qLCC[2] = "<a href=\"commentary_context\\hm_b11n3928.htm\">Commentary</a>"
qC[2] = h_catn2

qAr [3]="\"<b>Those who permit silk will be turned into an ape or pig?</b><p>Abu Dawud, Book 32, Number 4028:<br>Narrated AbuAmir or AbuMalik:<br> AbdurRahman ibn Ghanam al-Ash\'ari said: AbuAmir or AbuMalik told me--I swear by Allah another oath that he did not believe me that he heard the Apostle of Allah (peace_be_upon_him) say: THERE WILL BE AMONG MY COMMUNITY PEOPLE WHO WILL MAKE LAWFUL (THE USE OF) KHAZZ AND SILK. SOME OF THEM WILL BE TRANSFORMED INTO APES AND SWINE.\"";
//qLCC[3] = "<a href=\"commentary_context\\had_b32n4028.htm\">Commentary</a>"
qC[3] = h_catn3

qAr [4]="\"<b>Is it illegal for muslims to sell dogs?</b><p>Bukhari, Volume 3, Book 34, Number 299:<br>Narrated \'Aun bin Abu Juhaifa:<br> My father bought a slave who practiced the profession of cupping. (My father broke the slave's instruments of cupping). I asked my father why he had done so. He replied, \"THE PROPHET FORBADE THE ACCEPTANCE OF THE PRICE OF A DOG or blood, and also forbade the profession of tattooing, getting tattooed and receiving or giving Riba, (usury), and cursed the picture-makers.\" ";

// qLCC[4] = "<a href=\"commentary_context\\hb_v3b34n299.htm\">Commentary</a>"
qC[4] = h_catn1

quoteShowing=-1;
// Make sure you don't show the same quote 2x in a row
 prevQuoteShowing = quoteShowing;
 while(quoteShowing == prevQuoteShowing)
   quoteShowing = Math.ceil(Math.random() * numQuotes);

//have to change color and fonts here manually


document.write("<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"8\" name=\"qurantable\" > <tr><td height=6></td></tr><tr> <td bgcolor=#D0D3DB align=\"center\">" + "<font class=SmallKoran><p>" + qAr [quoteShowing] + "</td></tr><tr><td align=center class=SmallVerd>")
document.write("</td></tr>  <tr><td>" + "</td></tr><tr><td align=center class=SmallVerdBold height=30>" + "</td></tr></table>")

}