function Get_Results3(){
	var z = document.frm;
	var score = 0;
 
	score = score + addScore(z.q1);
	score = score + addScore(z.q2);
	score = score + addScore(z.q3);
	score = score + addScore(z.q4);
	score = score + addScore(z.q5);
	
 
	//alert(score);
	if(score>=0 && score<=5){
		result("Your score is: "+score+"\n(0-5 points): Ouch! You're kissing IQ is dangerously low. Read up on kissing tips on Links2Love before trying your luck!", "BEGINNER");
	}else if(score>=6 && score<=14){
		result("Your score is: "+score+"\n(6-14 points) You are among the 'kissing challenged.' It's probably a good idea to brush up on your technique before actually kissing someone.", "STILL LEARNING");
	
	}else if(score>=14 && score<=19){
				result("Your score is: "+score+"\n(14-19 points) Not bad! Your kissing IQ is getting there. Just remember to relax, take your partner into consideration, and don't try too hard.", "NOT BAD!");
	}else if(score>=20 && score<=50){
		result("Your score is: "+score+"\n(20 points or higher) Wow! You're a virtual kissing genius. Your technique seems polished and passionate. Keep up the good work!", "HOT STUFF!");
	}else
 
	return false;
}
 
function addScore3(q){
	for(i=0; i<5; i++){
		if(q[i].checked==true){
			//alert("="+q[i].value);
			return q[i].value * 1;
		}
	}
	alert("Please answer all questions in order to receive accurate results...");
}
 
function result3(msg, name, pic){
	var newWin = window.open("", "", "width=550, height=100");
	newWin.document.open();
	newWin.document.write('<head><title>'+name+'</title></head><table border><tr><td></td><td>'+msg+'</td></tr></table>');
}
//-->
