<!-- JavaScript: QuizCode v1.0 -- by AraKaraath halfDragon (c) 2003 -- arakaraath@hotmail.com --


  var aScoring = new Array();
  var iSC = 0;

  function addScore(iMin, iMax, sImage, sComment)
    {
    aScoring[iSC] = new Object;
    aScoring[iSC].iMin = iMin;
    aScoring[iSC].iMax = iMax;
    aScoring[iSC].sImage = sImage;
    aScoring[iSC].sComment = sComment;
    iSC++;
    }

  addScore(  0,   0, "reward0.gif", "You've never read 'In A Perfect World' have you?");
  addScore(  1,  20, "reward1.gif", "Have you actually read 'In A Perfect World'? You should be getting a better score than this.");
  addScore( 21,  40, "reward2.gif", "You seem to know something about the comic, but not much. You really should read it some more.");
  addScore( 41,  60, "reward3.gif", "You have a good general knowledge of the comic which shows you read it from time to time.");
  addScore( 61,  80, "reward4.gif", "You have a good knowledge of the comic and pay attention to whats happening from week to week.");
  addScore( 81,  99, "reward5.gif", "You are a true fan of 'In A Perfect World' and know more about it than is really healthy.");
  addScore(100, 100, "reward6.gif", "You know too much. You either live with the writers or have been looking over their shoulders.");


  var aResults = new Array();
  var iRC = 0;

  function addResult(iQuestion, iAnswer, sResult)
    {
    aResults[iRC] = new Object;
    aResults[iRC].iQuestion = iQuestion;
    aResults[iRC].iAnswer = iAnswer;
    aResults[iRC].sResult = sResult;
    iRC++;
    }


  var aQuestions = new Array();
  var iQC = 0;

  function addQuestion(sQuestion)
    {
    aQuestions[iQC] = new Object;
    aQuestions[iQC].sQuestion = sQuestion;
    aQuestions[iQC].aAnswers = new Array();
    iQC++;
    }

  function addAnswer(iQC, iAC, iWeight, sAnswer)
    {
    aQuestions[iQC].aAnswers[iAC] = new Object;
    aQuestions[iQC].aAnswers[iAC].sAnswer = sAnswer;
    aQuestions[iQC].aAnswers[iAC].iWeight = iWeight;
    }

  addQuestion("What does 'IAPW' short for?");
  addAnswer(0, 0, 0, "In A Pretty Wonderland");
  addAnswer(0, 1, 0, "In A Pink Waistcoat");
  addAnswer(0, 2, 3, "In A Perfect World");
  addAnswer(0, 3, 0, "I'm A Popular Wrestler");

  addQuestion("On what street do the cast of IAPW live?");
  addAnswer(1, 0, 0, "Dragon Drive");
  addAnswer(1, 1, 3, "Draconic Drive");
  addAnswer(1, 2, 0, "Draconian Drive");
  addAnswer(1, 3, 0, "Drakon Drive");

  addQuestion("What is Aneirin's favourite game?");
  addAnswer(2, 0, 0, "Bubble Bobble");
  addAnswer(2, 1, 0, "Crazy Taxi");
  addAnswer(2, 2, 3, "Chu Chu Rocket");
  addAnswer(2, 3, 0, "Jet Set Radio");

  addQuestion("Where is IAPW set?");
  addAnswer(3, 0, 3, "Bristol");
  addAnswer(3, 1, 0, "Birmingham");
  addAnswer(3, 2, 0, "Bacchus Marsh");
  addAnswer(3, 3, 0, "Brislington");

  addQuestion("What is the couch's name?");
  addAnswer(4, 0, 0, "Kevin");
  addAnswer(4, 1, 0, "Cameron");
  addAnswer(4, 2, 3, "Colin");
  addAnswer(4, 3, 0, "Calvin");

  addQuestion("Where was AraKaraath born?");
  addAnswer(5, 0, 0, "Austria");
  addAnswer(5, 1, 0, "Argentina");
  addAnswer(5, 2, 0, "America");
  addAnswer(5, 3, 3, "Australia");

  addQuestion("Where did Zerowing learn to fly?");
  addAnswer(6, 2, 3, "Harrendale");
  addAnswer(6, 0, 0, "Harvendale");
  addAnswer(6, 1, 0, "Hammondale");
  addAnswer(6, 3, 0, "Hillendale");

  addQuestion("What's the longest you freeze Lasagne and it would still be good?");
  addAnswer(7, 0, 0, "Two weeks");
  addAnswer(7, 1, 0, "Two months");
  addAnswer(7, 2, 3, "Two years");
  addAnswer(7, 3, 0, "Two decades");

  addQuestion("What does Phoenix do for a living?");
  addAnswer(8, 0, 0, "Headmaster");
  addAnswer(8, 1, 3, "Head Chef");
  addAnswer(8, 2, 0, "Head Chow");
  addAnswer(8, 3, 0, "Master Chief");

  addQuestion("What is Aneirin's favourite console?");
  addAnswer(9, 0, 3, "Dreamcast");
  addAnswer(9, 1, 0, "Playstation 2");
  addAnswer(9, 2, 1, "Gamecube");
  addAnswer(9, 3, 2, "Xbox");

  addQuestion("What is AraKaraath's favourite console?");
  addAnswer(10, 0, 2, "Dreamcast");
  addAnswer(10, 1, 0, "Playstation 2");
  addAnswer(10, 2, 1, "Gamecube");
  addAnswer(10, 3, 3, "Xbox");

  addQuestion("What does Vitro sell door-to-door?");
  addAnswer(11, 0, 0, "Vaccuum cleaners");
  addAnswer(11, 1, 0, "Aluminium cladding");
  addAnswer(11, 2, 3, "Girl-scout cookies");
  addAnswer(11, 3, 0, "Encyclopedia Furcadia");

  addQuestion("When is Wai's birthday?");
  addAnswer(12, 0, 0, "8th January 2002");
  addAnswer(12, 1, 3, "10th February 2002");
  addAnswer(12, 2, 0, "14th March 2002");
  addAnswer(12, 3, 0, "12th April 2002");

  addQuestion("What is the document that has all the information about IAPW characters?");
  addAnswer(13, 0, 0, "Story encyclopedia");
  addAnswer(13, 1, 0, "Story manual");
  addAnswer(13, 2, 3, "Story bible");
  addAnswer(13, 3, 0, "Story reference");

  addQuestion("Acording to Netdragon, what is dangerous work?");
  addAnswer(14, 0, 3, "Overclocking");
  addAnswer(14, 1, 0, "Overcooking");
  addAnswer(14, 2, 0, "Overtaking");
  addAnswer(14, 3, 0, "Overstocking");

  addQuestion("Where does Wai go to school?");
  addAnswer(15, 0, 0, "Sparrow Street Primary School");
  addAnswer(15, 1, 0, "Hawk Hill Primary School");
  addAnswer(15, 2, 0, "Peacock Parade Primary School");
  addAnswer(15, 3, 3, "Raven Park Primary School");

  addQuestion("How wide can Sphelx smile?");
  addAnswer(16, 0, 0, "^_________^");
  addAnswer(16, 1, 0, "^______________^");
  addAnswer(16, 2, 2, "^___________________^");
  addAnswer(16, 3, 3, "He's stretchable, so as wide as he wants");

  addQuestion("Who wears ripple-soled shoes?");
  addAnswer(17, 0, 0, "Budger");
  addAnswer(17, 1, 0, "Arcturius");
  addAnswer(17, 2, 3, "Vitro");
  addAnswer(17, 3, 0, "Phoenix");

  addQuestion("On what floor does Phoenix live?");
  addAnswer(18, 0, 3, "Ground Floor");
  addAnswer(18, 1, 0, "First Floor");
  addAnswer(18, 2, 0, "In the Attic");
  addAnswer(18, 3, 0, "In the Shed");

  addQuestion("Who said 'Dude, he plays Q3'");
  addAnswer(19, 0, 3, "Arcturius");
  addAnswer(19, 1, 0, "Apollo");
  addAnswer(19, 2, 0, "Pheonix");
  addAnswer(19, 3, 0, "Netdragon");

  addQuestion("What has two necks?");
  addAnswer(20, 0, 1, "The Pub");
  addAnswer(20, 1, 3, "The Swan");
  addAnswer(20, 2, 0, "The Giraffe");
  addAnswer(20, 3, 0, "The Turtle");

  addQuestion("Who wrote the song 'Our House'?");
  addAnswer(21, 0, 0, "Insanity");
  addAnswer(21, 1, 0, "Sillyness");
  addAnswer(21, 2, 0, "Lunacy");
  addAnswer(21, 3, 3, "Madness");

  addQuestion("How many days was Netdragon MUCK record?");
  addAnswer(22, 0, 0, "three");
  addAnswer(22, 1, 3, "four");
  addAnswer(22, 2, 0, "five");
  addAnswer(22, 3, 0, "six");

  addQuestion("What is AraKaraath favourite game?");
  addAnswer(23, 0, 3, "Halo");
  addAnswer(23, 1, 0, "Steel Battalion");
  addAnswer(23, 2, 0, "Metroid Prime");
  addAnswer(23, 3, 0, "MechAssault");

  addQuestion("Who is Wai's blue plush toy suppose to represent?");
  addAnswer(24, 0, 3, "Helvetica");
  addAnswer(24, 1, 0, "Verdana");
  addAnswer(24, 2, 0, "Arial");
  addAnswer(24, 3, 0, "Times New Roman");

  addQuestion("What is AraKaraath addicted to?");
  addAnswer(25, 0, 0, "Pizza");
  addAnswer(25, 1, 3, "Mozzarella cheese");
  addAnswer(25, 2, 2, "Doughnuts");
  addAnswer(25, 3, 1, "Lego");

  addQuestion("What fast-food chain does Vitro eat for breakfast");
  addAnswer(26, 0, 0, "McDonalds");
  addAnswer(26, 1, 0, "McDucks");
  addAnswer(26, 2, 3, "McDragons");
  addAnswer(26, 3, 0, "McDrakes");

  addQuestion("Who does Budger like to harass?");
  addAnswer(27, 0, 3, "The Postman");
  addAnswer(27, 1, 0, "The Milkman");
  addAnswer(27, 2, 0, "The Paperboy");
  addAnswer(27, 3, 0, "Jehova's Witnesses");

  addQuestion("Who likes Rally sport racing?");
  addAnswer(28, 0, 1, "Arcturius");
  addAnswer(28, 1, 0, "Apollo");
  addAnswer(28, 2, 3, "Netdragon");
  addAnswer(28, 3, 0, "Kanmeros");

  addQuestion("What does Budger like to buy everyone for Christmas?");
  addAnswer(29, 0, 0, "Pairs");
  addAnswer(29, 1, 0, "Peaches");
  addAnswer(29, 2, 3, "Pineapples");
  addAnswer(29, 3, 0, "Passionfruit");

  // -->