function validateStep2(form){
	if(!validateKwSchoolFormCO(form)){
		return false;
	}
	with(form) {
		if(!canContact.checked) {
			alert('To request more information, you must want to be contacted by a Warren National enrollment counselar');
			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;
		}
	return true;
}

function validateStep1(form) {
	if(!validateKwSchoolFormCO(form)) {
		return false;
	}
	with(form) {
		if(!validateAge(age)) {
			return false;
		}
		if(!validateWorkExperience(workExperience)) {
			return false;
		}
	}
	return true;
}

function validateThankYou(form) {
	with(form) {
		if(!validateAge(age)) {
			return false;
		}
		if(!validateWorkExperience(workExperience)) {
			return false;
		}
		if(!canContact.checked) {
			alert('To request more information, you must want to be contacted by a Warren National enrollment counselar');
			return false;
		}
	}
	return true;
}

function validateAge(age) {
	if(!validateDropDown(age)) {
		alert('Please select your age');
		return false;
	}
	if(age.options[age.selectedIndex].value == '18-22') {
		alert('You must be 23 or over to qualify for this program');
		return false;
	}
	return true;
}

function validateWorkExperience(workExperience) {
	if(!validateDropDown(workExperience)) {
		alert('Please select your work experience');
		return false;
	}
	if(workExperience.options[workExperience.selectedIndex].value == '0-4') {
		alert('You must have at least 5 years of work experience to qualify for this program');
		return false;
	}
	return true;
}

function onProgramChange(programId) {
	// Do nothing
}