function verify() {
	var thisform = document.forms [0]
	if (thisform.initials.value =="" || thisform.email.value =="" || thisform.city.value =="" || thisform.state.value =="") {
		alert ("You must enter your initials, email, city & state.  Please check the form and try again.") ;
		return false ;
	}
	else {
		thisform.submit() ;
	}
}
