function verifyGroupForm() {
	var failed = false;
	if (document.newgroup.Group_Name.value == "") { 
		alert('You have not entered a name for the Group.  Please do that now, and try again'); 
		eval("document.newgroup.Group_Name.focus()");  // focus back in the errored field
		failed = true; 
	}
	if (document.newgroup.Postcode.value == "") {
		alert('You have not entered a Postcode for the Group.  Please do that now, and try again');
		eval("document.newgroup.Postcode.focus()");  // focus back in the errored field
		failed = true;
	}
    if (document.newgroup.State.value == "") {
		alert('You have not entered a State for the Group.  Please do that now, and try again');
		eval("document.newgroup.State.focus()");  // focus back in the errored field
		failed = true;
	}
	if (document.newgroup.Contact_Person.value == "") { 
		alert('You have not entered a Contact Person for the Group.  Please do that now, and try again'); 
		eval("document.newgroup.Contact_Person.focus()");  // focus back in the errored field
		failed = true; 
	}
	if (document.newgroup.Contact_Email.value == "") {
		alert('You have not entered a Contact Email for the Group.  Please do that now, and try again');
		eval("document.newgroup.Contact_Person.focus()");  // focus back in the errored field
		failed = true;
	}
    if (document.newgroup.Contact_Phone.value == "") {
		alert('You have not entered a Contact Phone for the Group.  Please do that now, and try again');
		eval("document.newgroup.Contact_Phone.focus()");  // focus back in the errored field
		failed = true;
	}
	if (failed == true) { 
		return false; 
	} else { 
		document.newgroup.submit(); 
	}
}


