<!--
function Get_Results1(){
	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): DANGER!  DAMGER!! You're flirtability factor is dangerously low. You could suffer severe ego damage if even a mild flirtation is attempted.  Read the eye contact tips below, and re-take the quiz!", "FLOUNDERING FLIRT");
	}else if(score>=6 && score<=14){
		result("Your score is: "+score+"\n(6-14 points) You are among the 'flirtationally challenged.' Read the eye contact tips below before any real world attempts at working a crowded room.", "STILL LEARNING");
	
	}else if(score>=14 && score<=19){
				result("Your score is: "+score+"\n(14-19 points) Not bad! Your flirtability factor is getting there. You can stand to brush up a bit on eye contact - but a crowded room flirtation would not be fatal at this point.", "NOT BAD!");
	}else if(score>=20 && score<=50){
		result("Your score is: "+score+"\n(20 points or higher) EXCELLENT! Your at the genius level for the flirtability factor. You've finessed the eye contact segment of flirting and can move it into the real world. Keep up the good work!", "FABULOUS FLIRT!");
	}else
 
	return false;
}
 
function addScore1(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 result1(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>');
}
//-->
