// JavaScript Document
function radio_checker() {
		if (document.moneydonations.custom_amount.checked) {
			document.moneydonations.custom_donation.disabled = false;
			document.moneydonations.custom_donation.focus();
		}
		else {
			document.moneydonations.custom_donation.disabled = true;
		}
}
function validate_money_donation() {
		if(document.moneydonations.donation[0].checked | document.moneydonations.donation[1].checked | document.moneydonations.donation[2].checked | document.moneydonations.donation[3].checked | document.moneydonations.donation[4].checked | document.moneydonations.custom_amount.checked) {
				return true;
			} 
				else if (document.moneydonations.custom_amount.checked && document.moneydonations.custom_donation.value == '') {
				alert("Please Select A Custom Donation Amount.");
				return false;
			}
				else {
				alert("Please Select A Donation Amount.");
				return false;
			}
}
function money_form_donation() {
			if(document.order.first_name.value == '') {
				alert("Please Enter First Name.");
				return false;
			} 
			else if(document.order.last_name.value == '') {
				alert("Please Enter Last Name.");
				return false;
			} 
			else if(document.order.email.value == '') {
				alert("Please Enter Email Address.");
				return false;
			} 
}
function time_form_donation() {
			if(document.timedonations.first_name.value == '') {
				alert("Please Enter First Name.");
				return false;
			} 
			else if(document.timedonations.last_name.value == '') {
				alert("Please Enter Last Name.");
				return false;
			} 
			else if(document.timedonations.email.value == '') {
				alert("Please Enter Email Address.");
				return false;
			} 
}