function checkform(c)
{   
	if (document.getElementById(c).reg_name.value == '') {
		alert('Please enter your Name in the Walk Registration Information. This field is required.');
		return false;
	}
	else if (document.getElementById(c).reg_address.value == '') {
		alert('Please enter your Street address in the Walk Registration Information. This field is required.');
		return false;
	}
	else if (document.getElementById(c).reg_city.value == '') {
		alert('Please enter your city in the Walk Registration Information. This field is required.');
		return false;
	}
	else if (document.getElementById(c).reg_state.value == '') {
		alert('Please enter your state in the Walk Registration Information. This field is required.');
		return false;
	}
	else if (document.getElementById(c).reg_zip.value == '') {
		alert('Please enter your zip in the Walk Registration Information. This field is required.');
		return false;
	}
	else if (document.getElementById(c).email.value == '') {
		alert('Please enter your email address. This field is required.');
		return false;
	}
	else if (document.getElementById(c).fee.value == '') {
		alert('Please select an entry fee amount in the payment information section. This field is required.');
		return false;
	}
	else if (document.getElementById(c).firstName.value == '') {
		alert('Please enter the first name on the CC in the payment information section. This field is required.');
		return false;
	}
	else if (document.getElementById(c).lastName.value == '') {
		alert('Please enter the last name on the CC in the payment information section. This field is required.');
		return false;
	}
	else if (document.getElementById(c).creditCardNumber.value == '') {
		alert('Please enter your CC card number. This field is required.');
		return false;
	}
	else if (document.getElementById(c).expDateMonth.value == '') {
		alert('Please select an expiration date month. This field is required.');
		return false;
	}
	else if (document.getElementById(c).expDateYear.value == '') {
		alert('Please select an expiration date year. This field is required.');
		return false;
	}
	else if (document.getElementById(c).address1.value == '') {
		alert('Please fill out your Billing address completely in the payment information section. All fields are required.');
		return false;
	}
	else if (document.getElementById(c).city.value == '') {
		alert('Please fill out your Billing address completely in the payment information section. All fields are required.');
		return false;
	}
	else if (document.getElementById(c).state.value == '') {
		alert('Please fill out your Billing address completely in the payment information section. All fields are required.');
		return false;
	}
	else if (document.getElementById(c).zip.value == '') {
		alert('Please fill out your Billing address completely in the payment information section. All fields are required.');
		return false;
	}
	

	

	
	return true;
	
}