home *** CD-ROM | disk | FTP | other *** search
/ Imagine the Universe (9th Edition) / Imagine the Universe 9 - Disc 1.iso / pc / imagine / docs / science / try_l1 / javascript / supernovae.js < prev    next >
Encoding:
Text File  |  2001-09-10  |  450 b   |  23 lines

  1. function testButton(form) {
  2.     size1 = 999;
  3.  
  4.     for (Count = 0; Count < 3; Count++) {
  5.         if (form.answer1[Count].checked)
  6.     size1 = Count;
  7.     }
  8.     
  9.     RightAnswer1 = 2;
  10.     NumberCorrect = 0;
  11.     AnswerPage = 'supernovae_solution.html';
  12.     
  13.     if (size1 == RightAnswer1) {
  14.     alert ("That's exactly right!");
  15.     location = AnswerPage;
  16.     } else {
  17.     alert ("Nope! You answered incorrectly. Try it and see!");
  18.     location = AnswerPage;
  19.     }
  20. }
  21.  
  22.     
  23.