<!--

var numQues = 10;
var numChoi = 4;


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

  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><br><br>If you would like to improve your score, you can try again.<br><br><br><br><br>Or see correct answers below:<br><br><span class='c2'> Love Apple - Tomato<br>Love Arrows - Needle-like crystals embedded in quartz<br>City of Brotherly Love - Philadelphia<br>Love Lock - Long flowing curl<br>Puppy Love - Juvenile Love<br>Game Score - Tennis<br>Loving Cup - Two-handled cup given as a prize<br>Love-in-a-mist - A plant with feathery leaves<br>Lovebird - Small parrot<br>Love Feast - A religious meal<br><br></span>";
     graphic = "yellow";

if (score >69) {
	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'>Love Apple - Tomato<br>Love Arrows - Needle-like crystals embedded in quartz<br>City of Brotherly Love - Philadelphia<br>Love Lock - Long flowing curl<br>Puppy Love - Juvenile Love<br>Game Score - Tennis<br>Loving Cup - Two-handled cup given as a prize<br>Love-in-a-mist - A plant with feathery leaves<br>Lovebird - Small parrot<br>Love Feast - A religious meal<br><br></span>";
	graphic = "red";
	} 
	
if (score >91) {
	profile = "<br>Excellent!!<br>You ''know'' what Love is!<br><br><br><br><br><br>";
	graphic = "green";
	}
	

var scoreWin = window.open ("","scorewin","scrollbars=yes,width=500,height=220,screenX=300,screenY=300,left=300,top=300");

scoreWin.document.write('<html>'
  + '<head>'
  + '<title>What is 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>'
  + '<br>'
  + '</body>'
  + '</html>'
  + '');
  
scoreWin.document.close();  

}

// -->
