<!--

function validateSpecialty(form){
				if (((form.other.checked) == 1) && ((form.other_specialty.value == '') || (form.other_specialty.value == null) || (form.other_specialty.value == ' '))){
				alert("You've selected other in the Specialty section.  Please type the specialty area in the other text field before submitting.");
			return false;
				} else {
			return true;
			}
			}

// -->