function LoadResult(){
var i,score=0
for (i=0; i<10; i++){
if (document.forms[0].elements[i].checked == true){
score += eval(document.forms[0].elements[i].value)
}
}
if ((score >= 0) && (score <= 2)){
location.href="level/level1.html"
}
if ((score >= 3) && (score <= 5)){
location.href="level/level3.html"
}
if ((score >= 10) && (score <= 12)){
location.href="level/level1.html"
}
if ((score >= 13) && (score <= 15)){
location.href="level/level3.html"
}
if ((score >= 20) && (score <= 22)){
location.href="level/level1.html"
}
if ((score >= 23) && (score <= 25)){
location.href="level/level3.html"
}
if ((score >= 30) && (score <= 32)){
location.href="level/level2.html"
}
if ((score >= 33) && (score <= 35)){
location.href="level/level4.html"
}
if ((score >= 40) && (score <= 42)){
location.href="level/level2.html"
}
if ((score >= 43) && (score <= 45)){
location.href="level/level4.html"
}
if ((score >= 50) && (score <= 52)){
location.href="level/level2.html"
}
if ((score >= 53) && (score <= 55)){
location.href="level/level4.html"
}
}
