function validateContactData(){
	var s = "";
	with (document.frmContact) {
	if (name.value.length == 0) {
		s += "\nPlease tell us your name."
	}
	if (email.value.length == 0) {
		s += "\nPlease provide your email address."
	}
	if (comments.value.length == 0) {
		s += "\nPlease enter your comments."
	}
	if (s.length==0) {
		with (document.frmContact) {
		} 
		return true;
	}
		else {
			alert("Your registration could not be completed for the following reason(s):\n" + s);
			return false;
		}
	}
}