// this file is dynamically generated
function validatefields264(form){
var alertmsg = 'Adventures in Advent Registration E-Form: Please enter the following required information:\n\n';
var options = 0;
var answers_num = 0;
if(form.answertext1644.value == "") alertmsg = alertmsg + "Please answer question # 1.\n";
var options = 0;var answers_num = 0;
if(form.choice1645[1-1].checked == true)options++;
if(form.choice1645[2-1].checked == true)options++;
if(form.choice1645[3-1].checked == true)options++;
if(form.choice1645[4-1].checked == true)options++;
if(form.choice1645[5-1].checked == true)options++;
if(form.choice1645[6-1].checked == true)options++;
answers_num = 1;
if (options < answers_num) alertmsg = alertmsg + "You must select at least " + answers_num + " option(s) for question # 2.\n";
if(form.answertext1646.value == "") alertmsg = alertmsg + "Please answer question # 3.\n";
if(form.answertext1647.value == "") alertmsg = alertmsg + "Please answer question # 4.\n";
if(form.answertext1648.value == "") alertmsg = alertmsg + "Please answer question # 5.\n";
var options = 0;var answers_num = 0;
if(form.choice1649[1-1].checked == true)options++;
if(form.choice1649[2-1].checked == true)options++;
answers_num = 1;
if (options < answers_num) alertmsg = alertmsg + "You must select at least " + answers_num + " option(s) for question # 6.\n";
if(form.user_email.value == "") alertmsg = alertmsg + "Please enter your Email Address.\n";
if (alertmsg == 'Adventures in Advent Registration E-Form: Please enter the following required information:\n\n'){
	return true;
}
else { 
	alert(alertmsg);
	return false;
}
}

