<!--

function validateMembership(form){
				if (((form.other.checked) == 1) && ((form.other_hopetogain.value == '') || (form.other_hopetogain.value == null) || (form.other_hopetogain.value == ' '))){
				alert("You've selected other in the Hope to Gain section.  Please type the other benefit you hope to gain from your chapter membership.");
			return false;
				} else {
			return true;
			}
			}

// -->