function Get_Results4(){
	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<=1){
		result("Your score is: "+score+"\n(0-1 points): Your Romantic Dating Personality: Nonexistent!! Your dating style  would probably (or DEFINITELY) benefit from some romance-training. Read some books, watch some dating shows on Television, ask your friends, heck ask your GRANDPARENTS before you continue your dating attempts! You need help - and ANYthing would likely be an improvement on a date!");
	}else if(score>=2 && score<=6){
		result("Your score is: "+score+"\n(2-6 points) Your Romantic Dating Personality: Starving. The romantic in you is on life support - and likely your dating life is too. If you truly want to impress your dates, you're going to need a serious romance overhaul. Take a look around this site for helpful hints, and put in some serious work before your next disast- er, I mean date.");
	}else if(score>=7 && score<=11){
		result("Your score is: "+score+"\n(7-11 points) Your Romantic Dating Personality: Anemic. You have some romantic thoughts in that head of yours to impress on your dates, but they need some encouragement and company before you can blossom into a 'dream date.' Remember, both planning AND spontaneity go a long way in the romance department. Remember, just because it's something you enjoy doesn't necessarily mean your date will love it too. When it comes to dating, take their interests, emotions, and desires into consideration when planning an event, and you may find things will go much more smoothly.");
	}else if(score>=12 && score<=19){
		result("Your score is: "+score+"\n(12-19 points) Your Romantic Dating Personality: Good, but not flawless! Although there's always room for improvement, your dating style is pretty romantically gifted. You are doing well in taking your date into consideration and making an effort to be romantic. Check out some of Links2Love's dating pages for romantic ideas to further your romantic prowess!");
	}else if(score>=20 && score<=50){
		result("Your score is: "+score+"\n(20 points or higher) Your Romantic Dating Personality: A True Hopeless Romantic - but definitely not hopeless! Your dates are lucky, indeed. You have the knowledge that will make your date or partner feel appreciated, loved, and cared for. Keep up the great work! You probably have many friends who could USE some of your dating advice. Send them this quiz, and if they score poorly, you can offer to sell them your upcoming 'how to' book on dating and romance!");
	}else
 
	return false;
}
 
function addScore4(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 your accurate romantic dating personality results...");
}
 
function result4(msg, name, pic){
	var newWin = window.open("", "", "width=550, height=200");
	newWin.document.open();
	newWin.document.write('<head><title>'+name+'</title></head><table border><tr><td></td><td>'+msg+'</td></tr></table>');
}
//-->
