function validate(contactForm) {
	
	if (contactForm.name.value == "") { // validate Full Name
		alert("Your NAME must be entered before processing this form")
		contactForm.name.focus()
		return false
    	}
	
	if (contactForm.city.value == "") { // validate Phone Number
		alert("Your CITY must be entered before processing this form")
		contactForm.city.focus()
		return false
    	}

	if (contactForm.state.value == "") { // validate State
		alert("Your must select a STATE before processing this form")
		contactForm.state.focus()
		return false
    	}

	if (contactForm.email.value == "") { // validate Email
		alert("Your E-MAIL address must be entered before processing this form")
		contactForm.email.focus()
		return false
    	}
    	
    	if (contactForm.comments.value == "") { // validate Comments
		alert("Your E-MAIL address must be entered before processing this form")
		contactForm.comments.focus()
		return false
    	}
		
// alert("Thank you! Your Information Request will now be submitted.") // Message before submitting
return true

}

