function valbutton(button) {
	// place any other field validations that you require here
	// validate myradiobuttons
	myOption = -1;
	for (i=0; i<button.length; i++) {
		if (button[i].checked) {
			return "1";
		}
	}
	return "0";
}