// this file is dynamically generated
function validatefields6(form){
var alertmsg = 'Information Request Form: Please enter the following required information:\n\n';
var options = 0;
var answers_num = 0;
var options = 0;var answers_num = 0;
if(form.choice19[1-1].checked == true)options++;
if(form.choice19[2-1].checked == true)options++;
if(form.choice19[3-1].checked == true)options++;
answers_num = 1;
if (options < answers_num) alertmsg = alertmsg + "You must select at least " + answers_num + " option(s) for question # 1.\n";
var options = 0;var answers_num = 0;
if(form.choice20[1-1].checked == true)options++;
if(form.choice20[2-1].checked == true)options++;
if(form.choice20[3-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";
var options = 0;var answers_num = 0;
if(form.choice21[1-1].checked == true)options++;
if(form.choice21[2-1].checked == true)options++;
if(form.choice21[3-1].checked == true)options++;
if(form.choice21[4-1].checked == true)options++;
if(form.choice21[5-1].checked == true)options++;
if(form.choice21[6-1].checked == true)options++;
if(form.choice21[7-1].checked == true)options++;
if(form.choice21[8-1].checked == true)options++;
answers_num = 1;
if (options < answers_num) alertmsg = alertmsg + "You must select at least " + answers_num + " option(s) for question # 3.\n";
if(form.answertext24.value == "") alertmsg = alertmsg + "Please answer question # 6.\n";
if(form.answertext26.value == "") alertmsg = alertmsg + "Please answer question # 8.\n";
if (alertmsg == 'Information Request Form: Please enter the following required information:\n\n'){
	return true;
}
else { 
	alert(alertmsg);
	return false;
}
}

