function validateStep2(form){
	if(!validateGcuSchoolFormCO(form)){
		return false;
	}
	with(form){
		var sHighestEducation = educationLvl;
		var sProgram = programValues[programId.value];
		var programD = programNames[programId.value];
		
		if(programD != null && (programD.toUpperCase().search("WITH IR AND CERT") != -1) && (state.value == 'AR' || state.value == 'CT' || state.value == 'IN' || state.value == 'KY')) {
			alert("Thank you for your interest in Grand Canyon University. You have expressed interest in a program which leads to initial certification as a teacher or administrator. Unfortunately, the requirements of your state differ from the program offered at GCU. Our goal is for you to be able to achieve your certification and enjoy your career as an educator. For this reason we suggest you choose another university whose curriculum aligns better with your state requirements. Thank you again and we wish you the best of luck in reaching your educational goals. -Grand Canyon University Enrollment");
			return false;
		}
		
		// EDUP-2018
		if( !validateProgramState( sProgram, state.value ) )
		{
			return false;
		}
		
		if(sHighestEducation == "2") {
			alert("We're sorry based on your current education level you do not qualify for the program/degree you have selected.");
			return false;
		}
		
		if((sProgram == "D" || sProgram == "E" || sProgram == "F" || 
			sProgram == "G" || sProgram == "H" || sProgram == "P" || sProgram == "Q") 
		&& !(sHighestEducation == "8" || sHighestEducation == "10")) {
			alert("Based on your current education level you do not qualify for the program/degree you have selected. Please select an Associate or Bachelor program from the Program list.");
			return false;
		}
		
		if((sProgram == "C1") 
		&& !(sHighestEducation == "10")) {
			alert("Based on your current education level you do not qualify for the program/degree you have selected. Please select an Associate, Bachelor, or Masters program from the Program list.");
			return false;
		}
		
		if((sProgram == "13" || sProgram == "48" || sProgram == "49" || sProgram == "50" || sProgram == "51"
		    || sProgram == "52")  && sHighestEducation != "13") {
			alert("You need to be a Registered Nurse to apply for this program");
			return false;
		}
		
		if((sProgram == "15"  || sProgram == "27" || sProgram == "33") && sHighestEducation != "15") {
			alert("You require BS in Nursing to apply for this program");
			return false;
		}
		
		if((sProgram == "I" || sProgram == "J" || sProgram == "K" || sProgram == "L" ||
			sProgram == "M" || sProgram == "N" || sProgram == "O" || sProgram == "EMBA" ||
			sProgram == "14" || sProgram == "16" || sProgram == "17" || sProgram == "18" ||
			sProgram == "19" || sProgram == "20" || sProgram == "21" || sProgram == "22" ||
			sProgram == "23" ||	sProgram == "24" || sProgram == "25" || sProgram == "26" ||
			sProgram == "46" ||	sProgram == "47" || sProgram == "C6" || sProgram == "C7") 
		&& !(sHighestEducation == "8" || sHighestEducation == "15"
			|| sHighestEducation == "8" || sHighestEducation == "10")) {
			alert("Based on your current education level you do not qualify for the program/degree you have selected. Please select an Associate or Bachelor program from the Program list.");
			return false;
		}
		
		if((sProgram == "A" || sProgram == "B" || sProgram == "C" || sProgram == "1" ||
			sProgram == "2" || sProgram == "3" || sProgram == "4" || sProgram == "5" ||
			sProgram == "6" || sProgram == "7" || sProgram == "8" || sProgram == "9" ||
			sProgram == "10" || sProgram == "11" || sProgram == "12" || sProgram == "28" || 
			sProgram == "35" || sProgram == "45" || sProgram == "R" || sProgram == "S" || 
			sProgram == "T" || sProgram == "U" || sProgram == "V" ||
		 sProgram == "40" || sProgram == "41" || sProgram == "42" || sProgram == "43" || sProgram == "53" || sProgram == "57" || sProgram == "58") 
		&& (sHighestEducation == "2" || sHighestEducation == "4")) {
			alert("We're sorry based on your current education level you do not qualify for the program/degree you have selected.");
			return false;
		}
		
	
	
	if ( ! validateStartDate123Months ('custom12') ) {
			return false;
		}
		if ( ! validateCommentBox ('comments') ) {
			return false;
		}
		if(! validateJoiningReason ('reasonForJoining') ) { return false; } if(! validateContactQuestion ('contactForQuality') ) { return false;}if(! validateMotivationQuestion ('motivationForQuality') ) {
				return false;
		}
		
	   if(!canContact.checked) {
			alert("To request more information, you must check the disclaimer checkbox");
			return false;
		}	
		}
	return true;
}

function validateStep1(form) {
	if(!validateGcuSchoolFormCO(form)){
		return false;
	}
	with(form){
		if(!validateDropDown(educationLevel)){
			alert("Please select your highest level of education.");
			return false;
		}
		var sHighestEducation = educationLevel.value;	
		
		if(sHighestEducation == "2" || sHighestEducation == "4") {
			alert("We're sorry, there are no programs available for the education level selected.");
			return false;
		}
				
		if(!validateDropDown(custom1)){
			alert("Please select an option to help us learn about your citizenship");
			return false
		}
	}  	
	return true;
}


function validateThankYou(form) {
	with(form){
		
		if(!validateDropDown(educationLevel)){
			alert("Please select your highest level of education.");
			return false;
		}
		var sProgram = programValues[programId.value];
		var sHighestEducation = educationLevel.value;	
		var programD = programNameArr[programId.value];
						
		if(programD != null && (programD.toUpperCase().search("WITH IR AND CERT") != -1) 
			&& (stateValue == 'AR' || stateValue == 'CT' || stateValue == 'IN' || stateValue == 'KY')) {
			alert("Thank you for your interest in Grand Canyon University. You have expressed interest in a program which leads to initial certification as a teacher or administrator. Unfortunately, the requirements of your state differ from the program offered at GCU. Our goal is for you to be able to achieve your certification and enjoy your career as an educator. For this reason we suggest you choose another university whose curriculum aligns better with your state requirements. Thank you again and we wish you the best of luck in reaching your educational goals. -Grand Canyon University Enrollment");
			return false;
		}
		
		// EDUP-2018
		if( !validateProgramState( sProgram, stateValue ) )
		{
			return false;
		}
		
	   if(sHighestEducation == "2" || sHighestEducation == "4") {
			alert("We're sorry, there are no programs available for the education level selected.");
			return false;
		}
		if(!validateDropDown(programId)){
			alert("Please select the program.");
			return false;
		}
				
		if((sProgram == "D" || sProgram == "E" || sProgram == "F" || 
			sProgram == "G" || sProgram == "H" || sProgram == "P" || sProgram == "Q") 
		&& !(sHighestEducation == "8" || sHighestEducation == "10")) {
			alert("Based on your current education level you do not qualify for the program/degree you have selected. Please select an Associate or Bachelor program from the Program list.");
			return false;
		}
		
		if((sProgram == "C1") 
		&& !(sHighestEducation == "10")) {
			alert("Based on your current education level you do not qualify for the program/degree you have selected. Please select an Associate, Bachelor, or Masters program from the Program list.");
			return false;
		}
		if((sProgram == "13" || sProgram == "48" || sProgram == "49" || sProgram == "50" || sProgram == "51"
		    || sProgram == "52")  && sHighestEducation != "13") {
			alert("You need to be a Registered Nurse to apply for this program");
			return false;
		}
		
		if((sProgram == "15"  || sProgram == "27" || sProgram == "33") && sHighestEducation != "15") {
			alert("You require BS in Nursing to apply for this program");
			return false;
		}
		
		if((sProgram == "I" || sProgram == "J" || sProgram == "K" || sProgram == "L" ||
			sProgram == "M" || sProgram == "N" || sProgram == "O" || sProgram == "EMBA" ||
			sProgram == "14" || sProgram == "16" || sProgram == "17" || sProgram == "18" ||
			sProgram == "19" || sProgram == "20" || sProgram == "21" || sProgram == "22" ||
			sProgram == "23" ||	sProgram == "24" || sProgram == "25" || sProgram == "26" ||
			sProgram == "46" ||	sProgram == "47" || sProgram == "C6" || sProgram == "C7") 
		&& !(sHighestEducation == "7" || sHighestEducation == "15"
			|| sHighestEducation == "8" || sHighestEducation == "10")) {
			alert("Based on your current education level you do not qualify for the program/degree you have selected. Please select an Associate or Bachelor program from the Program list.");
			return false;
		}
		
		if((sProgram == "A" || sProgram == "B" || sProgram == "C" || sProgram == "1" ||
			sProgram == "2" || sProgram == "3" || sProgram == "4" || sProgram == "5" ||
			sProgram == "6" || sProgram == "7" || sProgram == "8" || sProgram == "9" ||
			sProgram == "10" || sProgram == "11" || sProgram == "12" || sProgram == "28" || 
			sProgram == "35" || sProgram == "45" || sProgram == "R" || sProgram == "S" || 
			sProgram == "T" || sProgram == "U" || sProgram == "V" ||
		 sProgram == "40" || sProgram == "41" || sProgram == "42" || sProgram == "43" || sProgram == "53") 
		&& (sHighestEducation == "2" || sHighestEducation == "4")) {
			alert("We're sorry based on your current education level you do not qualify for the program/degree you have selected.");
			return false;
		}
		if(!validateDropDown(custom1)){
			alert("Please select an option to help us learn about your citizenship");
			return false;
		}
		if(!canContact.checked) {
			alert("To request more information, you must check the disclaimer checkbox");
			return false;
		}	
	}   
	return true;
}

// EDUP-2018 
function validateProgramState ( programValue, stateValue )
{
	if ( ( programValue == '47' && 
			( stateValue == 'AR' || stateValue == 'FL' || stateValue == 'IL' || stateValue == 'MO' 
				|| stateValue == 'NH' || stateValue == 'OR' || stateValue == 'UT') ) 
		 || 
		 (programValue == '46'&&
		 	( stateValue == 'OK' || stateValue == 'NJ' ) ) )
	{
		alert("Thank you for your interest in Grand Canyon University. You have expressed interest in a program where the requirements of your state differ from the program offered at GCU. Our goal is for you to be able to achieve your career goals. For this reason, we suggest you choose another university whose curriculum aligns better with your state requirements. Thank you again and we wish you the best of luck in reaching your educational goals. -Grand Canyon University Enrollment");
		return false;
	}
	return true;
}

function onProgramChange(programId) {
	// Do nothing
}
