function validateForm(form){
if (form.OK_Tech_Requirements.value != "YES"){
	alert("You must type the letters 'YES' (all caps) in the box after verifying you have read the SE Blackboard hardware and software requirements.");
	form.OK_Tech_Requirements.focus();
	return false;
	}
	else{
	return true;
	}
}
