<!--

var numQues = 10;
var numChoi = 4;


function getScore(form,score) {
  var score = 0;
  var myvalue = 0;
  var currElt;
  var currSelection;
  var profile = "";

  for (i=0; i<numQues; i++) {
    currElt = i*numChoi;
    for (j=0; j<numChoi; j++) {
      currSelection = form.elements[currElt + j];
      if (currSelection.checked) {
	  	myvalue = parseInt(currSelection.value);
        score = score + myvalue;
        break;
      }
    }
  }
  
// form.debug.value = score 

profile = "<br>If you would like to improve your score, you can try again.<br><br><br><br>Or see correct answers below:<br><br><br><br><br><span class='c2'>You are the only one: Daffodil<br>Devoted love: Lavender<br>Our dreams will come true: Heather<br>Secret love: Acacia<br>Passionate love: Red Rose<br>True Love: Forget-Me-Not<br>Hopeless love: Poppy<br>Delaration of love: Tulips<br>Friendship love: Yellow Rose<br>Love at first sight: Gladioli<br><br></span>";

if (score >59) {
	profile = "<br>Good job! If you would like to improve your score, you can try again.<br><br><br><br>Or see correct answers below:<br><br><br><br><span class='c2'>You are the only one: Daffodil<br>Devoted love: Lavender<br>Our dreams will come true: Heather<br>Secret love: Acacia<br>Passionate love: Red Rose<br>True Love: Forget-Me-Not<br>Hopeless love: Poppy<br>Delaration of love: Tulips<br>Friendship love: Yellow Rose<br>Love at first sight: Gladioli<br><br></span>";

	} 
	
if (score >79) {
	profile = "<br>Excellent!!<br>You ''know'' the language of flowers!<br><br><br><br><br>Answers below:<br><br><br><br><span class='c2'>You are the only one: Daffodil<br>Devoted love: Lavender<br>Our dreams will come true: Heather<br>Secret love: Acacia<br>Passionate love: Red Rose<br>True Love: Forget-Me-Not<br>Hopeless love: Poppy<br>Delaration of love: Tulips<br>Friendship love: Yellow Rose<br>Love at first sight: Gladioli<br><br></span>";
	}
	
var scoreWin = window.open ("","scorewin","scrollbars=yes,width=480,height=220,screenX=270,screenY=275,left=270,top=275");

scoreWin.document.write('<html>'
  + '<head>'
  + '<title>The Flower of Love</title>'
  + '<link rel="stylesheet" type="text/css" href="popup.css" />'
  + '</head>'
  + '<body>'
  + '<div class=c8>'
  + '<div class=c9>'
  + '<p align="center" valign="middle"><span class="c1"><b>Your score is ' + score + ' %.</span></b></p>' + profile
  + '</div>'
  + '</div>'
  + '<br>'
  + '</body>'
  + '</html>'
  + '');
  
scoreWin.document.close();  

}

// -->
