function validate_form(formObj) {
	var CHARSET = /[^a-zA-Z\s]/;
	with (formObj) {
		if (education_goal.options[education_goal.selectedIndex].value == "" ) {
			alert("Please select your education goal");
			return false;
		}
		if (service.options[service.selectedIndex].value == "" ) {
			alert("Please select Service");
			return false;
		}
		if(!checkMail(email, "Email", true)) {
			return false;
		}
		if(rb_agree.checked == false) {
			alert("We\'re sorry: in order to submit the form , you must review and agree to the Military.com Service Agreement");
			return false;
		}
	}
}

function newWin(path) {
	window.open(path, 'new', 'toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width=600,height=500');
}