
function ValidateForm(theForm) {

		if (theForm.FirstName.value == "") {
			alert("Please enter your first name");
			theForm.FirstName.focus();
			return (false);
		}

		if (theForm.LastName.value == "") {
			alert("Please enter your last name");
			theForm.LastName.focus();
			return (false);
		}
		
		if (theForm.GroupType.value == "") {
			alert("Please enter your type of group");
			theForm.GroupType.focus();
			return (false);
		}
		
		if (theForm.GroupName.value == "") {
			alert("Please enter your group name");
			theForm.GroupName.focus();
			return (false);
		}
		
		if (theForm.email.value == "") {
			alert("Please enter your Email address");
			theForm.email.focus();
			return (false);
		}
		
		if (theForm.Question.value == "") {
			alert("Please ask your question/comment");
			theForm.Question.focus();
			return (false);
		}

		theForm.FirstName.value = theForm.FirstName.value.toUpperCase();
		theForm.LastName.value = theForm.LastName.value.toUpperCase();
		theForm.GroupName.value = theForm.GroupName.value.toUpperCase();
		return (true);
}