<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Begin
var ans = new Array;
var done = new Array;
var yourAns = new Array; 
var explainAnswer = new Array;
var score = 0; 
ans[1] = "Advanced fee scam"; 
ans[2] = "Employment scam"; 
ans[3] = "Nigerian scam";
ans[4] = "Pyramid scam";
ans[5] = "Phishing"; 
explainAnswer[1]="The reason why Answer "+ans[1]+" is When a scammer promises you something like a credit card or loan, but asks for money upfront, it is considered one of the many forms of the advance fee scam. ";
explainAnswer[2]="The reason why Answer "+ans[2]+" is When a scammer promises you a job, but asks for money up front or for your personal information it is called an employment scam.";
explainAnswer[3]="The reason why Answer "+ans[3]+" is When a scammer asks you to help them transfer a large sum of money from a foreign country and offers you a share of the cash, it is called the very popular Nigerian scam.";
explainAnswer[4]="The reason why Answer "+ans[4]+" is When a scammer sends you a letter or e-mail asking you to send money to the top person on a list and also ask you to recruit more people to be added to this list below you it is called a pyramid scheme.";
explainAnswer[5]="The reason why Answer "+ans[5]+" is When a scammer attempts to retrieve personal information from you by using a fake e-mail or a website impersonating a bank or other institution it is called phishing.";  
function Engine(question, answer) { 
yourAns[question]=answer;
}

function Score(){
 
var answerText = "How did you do?\n------------------------------------\n";
for(i=1;i<=5;i++){
   answerText=answerText+"\nQuestion :"+i+"\n";
  if(ans[i]!=yourAns[i]){
    answerText=answerText+"\nThe correct answer was "+ans[i]+"\n\n"+explainAnswer[i]+"\n\n";
  }
  else{
    answerText=answerText+" \nCorrect! \n\n";
    score++;
  }
} 
answerText=answerText+"\n\nYour total score is : "+score+"\n\n"; 
//now score the user
answerText=answerText+"\n\nComment : "; 
if(score<=0){
answerText=answerText+"You need to learn some more about scam"; 
}
if(score>=1 && score <=2){
answerText=answerText+"bit more information about scam";
}
if(score>=3 && score <=3){
answerText=answerText+"doing ok";  
}
if(score>=5){ 
answerText=answerText+"You are one hot Scam awareness babe!";
}
alert(answerText);  
//text.innerHTML = answerText + " "; 
//document.getElementById('right').style.display="block";     
}
//  End -->


