function randompt(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=2;
qAr = new Array(numQuotes); // QuoteArray
//qLCC = new Array(numQuotes); // Quote link commentary and context
//categories of hadith
// random advantage of leaving islam

qAr [0]=""

qAr [1] = "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr> <td width=\"93\">";
qAr [1] +="<img src=\"" + extraspaces + "randomE/images/wife_beating.gif\" width=\"93\" height=\"110\" alt=\"Man beating his Wife\"></td><td width=\"10\">&nbsp;</td><td valign=\"top\"><p><strong><font size=\"2\"><font color=\"#93000B\">Did you know</font> - Quran (4:34) orders a man to beat his wife if she doesn't obey him?<font size=\"1\"><br></font>" + "</font></strong><font size=\"1\">Quran 4:34: Men are the maintainers of women because Allah has made some of them to excel others and because they spend out of their property; the good women are therefore obedient, guarding the unseen as Allah has guarded; and (as to) those on whose part you fear desertion, admonish them, and " +"leave them alone in their sleeping places and<strong> beat them</strong>; then if they obey you, do not seek a way against them; surely Allah is High, Great.<br></font><strong><font size=\"2\">";
qAr [1] += "<a href=\"http://answering-islam.org/Silas/wife-beating.htm\" target=\"_blank\">[Read more]</a></font></strong></p></td></tr></table>";

qAr [2] = "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td valign=\"top\">";
qAr [2] += "<a href=\"http://answering-islam.org/Quran/Science/semenproduction.htm\" target=\"_blank\"><img src=\"" + extraspaces + "randomE/images/backbone_sperm.gif\" width=\"200\" height=\"64\" hspace=\"5\" vspace=\"5\" align=\"left\" border=\"0\" alt=\"Click to see the proof\"></a><font size=\"2\"><strong><font" + " color=\"#93000B\">Did you know -</font> Quran plagiarised the wrong theory of ancient Greek scientists who believed that Semen originates from the backbone? </strong><br><br><a href=\"http://answering-islam.org/Quran/Science/semenproduction.htm\" target=\"_blank\">[Read more]</a></font></td></tr></table>";








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(qAr [quoteShowing]);
}