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 make sure you provide your email address."
			}
			if (Comments.value.length == 0) {
				s += "\nPlease tell us your reason for contacting us."
			}
		if (s.length==0) {
			with (document.frmContact) {
	
			}
			return true;
		}
		else {
			alert("The form could not be submitted for the following reason(s):\n" + s);
			return false;
		}
	}
}