function validate(){
	var valid = true;
	if(document.getElementById(name).value() == ""){
		valid = false;
		alert("ASFAR bylaws require that we have your name on file");
		return false;		
	}
	if(document.getElementById(address).value() == ""){
		valid = false;
		alert("ASFAR bylaws require that we have your mailing address on file");
		return false;
	}
	if(document.getElementById(declaration).checked() == false){
		valid = false;
		alert("ASFAR bylaws require that you agree to the Declaration of Principles to join");
		return false;
	}
	if(document.getElementById(email).value() == ""){
		valid = !confirm("We highly recommend that you provide your email address. Do you want to do so?\n(Press OK to submit, cancel to return to form)");
	}
	if(document.getElementById(phone).value() == ""){
		valid = !confirm("We recommend that you provide your phone number. Do you want to do so?\n(Press OK to submit, cancel to return to form");
	}
	return valid;
}