// JavaScript Document
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
var ans = new Array;
var yourAns = new Array;
var qstnText = new Array;
var answerText = new Array;
var explainAnswer = new Array;

qstnText[1] = "Portuguese Water Dogs were originally bred to - ";
qstnText[2] = "Do PWDs shed?";
qstnText[3] = "It is recommended that a PWD be brushed - ";
qstnText[4] = "Most PWDs are - ";
qstnText[5] = "PWDs do best in the following environment:";

ans[1] = "c";
ans[2] = "a";
ans[3] = "c";
ans[4] = "d";
ans[5] = "c";

answerText[1] = " - help fishermen";
answerText[2] = " - Yes";
answerText[3] = " - two or more times a week";
answerText[4] = " - all of the above";
answerText[5] = " - Living indoors with someone at home";

explainAnswer[1]=" ";
explainAnswer[2]="Not very much, but they do shed.  Some of the shed hair gets caught in the long coat rather than ending up on your floor.";
explainAnswer[3]="Frequent brushing is essential not only for keeping the coat mat-free, but for removing shed hair.";
explainAnswer[4]=" ";
explainAnswer[5]="PWDs are people-oriented and long to be with their 'crewmates' or family.  Thus they do not do well in a kennel environment or left alone for long periods of time. ";


function Engine(question, answer) {
	yourAns[question]=answer;
}

function Score(){
var score = 0;
var scoreText = "How did you do?\n------------------------------------\n";
for(i=1;i<=5;i++){
	
	scoreText=scoreText+"\nQuestion "+i+": "+qstnText[i]+"\n";
	scoreText=scoreText+"Your answer: "+yourAns[i]+"\n";
	
	if(ans[i]!=yourAns[i]){
		scoreText=scoreText+"\nThe correct answer was: "+ans[i]+answerText[i]+"\n"+explainAnswer[i]+"\n";
		}
	else {
		scoreText=scoreText+" \nCorrect! \n";
		scoreText=scoreText+answerText[i]+"\n";
		score++;
		}
}

scoreText=scoreText+"\n------------------------------------\n";
scoreText=scoreText+"\nYour total score is : "+score+" out of 5\n";

//now score the user
if(score<=0){
scoreText=scoreText+"You are probably just getting started finding out about this breed.  There is a wealth of information available on our web site!";
}
if(score>=1 && score <=2){
scoreText=scoreText+"You are probably just getting started finding out about this breed.  There is a wealth of information available on our web site.";
}
if(score>=3 && score <=4){
scoreText=scoreText+"You are off to a good start!  We encourage you to peruse our web site for more information.";
}
if(score>4){
scoreText=scoreText+"Congratulations!  You got all the questions right!";
}

alert(scoreText);

}
//  End -->
