function check_frontquiz(info){
	var why = "";
	var radiocheckvalue = false;
	why += checkYes(document.frontquiz.front_1.value,"Question 1");
	why += checkYes(document.frontquiz.front_2.value,"Question 2");
	why += checkYes(document.frontquiz.front_3.value,"Question 3");
	why += checkYes(document.frontquiz.front_4.value,"Question 4");
	why += checkYes(document.frontquiz.front_5.value,"Question 5");
	radiocheckvalue = false;
	for (i=0, n=document.frontquiz.front_6_physical.length; i<n; i++) {
		if (document.frontquiz.front_6_physical[i].checked) {
			radiocheckvalue = true;
			break;
		}
	}
	why += checkRadioSelect(radiocheckvalue,"Physical Rating");
	radiocheckvalue = false;
	for (i=0, n=document.frontquiz.front_6_mental.length; i<n; i++) {
		if (document.frontquiz.front_6_mental[i].checked) {
			radiocheckvalue = true;
			break;
		}
	}
	why += checkRadioSelect(radiocheckvalue,"Mental Rating");
	radiocheckvalue = false;
	for (i=0, n=document.frontquiz.front_6_emotional.length; i<n; i++) {
		if (document.frontquiz.front_6_emotional[i].checked) {
			radiocheckvalue = true;
			break;
		}
	}
	why += checkRadioSelect(radiocheckvalue,"Emotional Rating");
	radiocheckvalue = false;
	for (i=0, n=document.frontquiz.front_6_spiritual.length; i<n; i++) {
		if (document.frontquiz.front_6_spiritual[i].checked) {
			radiocheckvalue = true;
			break;
		}
	}
	why += checkRadioSelect(radiocheckvalue,"Spiritual Rating");
	radiocheckvalue = false;
	for (i=0, n=document.frontquiz.front_6_relationships.length; i<n; i++) {
		if (document.frontquiz.front_6_relationships[i].checked) {
			radiocheckvalue = true;
			break;
		}
	}
	why += checkRadioSelect(radiocheckvalue,"Relationships Rating");
	radiocheckvalue = false;
	for (i=0, n=document.frontquiz.front_6_career.length; i<n; i++) {
		if (document.frontquiz.front_6_career[i].checked) {
			radiocheckvalue = true;
			break;
		}
	}
	why += checkRadioSelect(radiocheckvalue,"Career Rating");
	radiocheckvalue = false;
	for (i=0, n=document.frontquiz.front_6_environment.length; i<n; i++) {
		if (document.frontquiz.front_6_environment[i].checked) {
			radiocheckvalue = true;
			break;
		}
	}
	why += checkRadioSelect(radiocheckvalue,"Environment Rating");
	radiocheckvalue = false;
	for (i=0, n=document.frontquiz.front_6_community.length; i<n; i++) {
		if (document.frontquiz.front_6_community[i].checked) {
			radiocheckvalue = true;
			break;
		}
	}
	why += checkRadioSelect(radiocheckvalue,"Community Rating");
	var checkbox_choices = 0;
	var myCheckboxArray = document.frontquiz.elements["front_7[]"];
	for (counter = 0; counter < myCheckboxArray.length; counter++){
		if (myCheckboxArray[counter].checked){ 
			checkbox_choices = checkbox_choices + 1;
		}
	}
	if(checkbox_choices < 3){
		why += "Please select 3 for what's important in your Life Success.\n";
	}
	if(checkbox_choices > 3){
		why += "Please select your top 3 only for what's important in your Life Success.\n";
	}
	why += checkYes(document.frontquiz.firstname.value,"First Name");
	why += checkYes(document.frontquiz.email.value,"Email Address");
	why += checkEmail(document.frontquiz.email.value,"Email Address");
	if (why != "") {
		alert(why);
		return false;
	}
	return true;
}
