////// Pay Pal Stuff Start
	function canSubmit(form) {
			if((form.matching.checked && form.os1.value == "") || (form.matching.checked && form.os1.value == null)) {
				alert("Please an employer");
				form.os1.focus();
				return false;
			} else if (form.matching.checked && form.os1.value != "") {
				return true;
			} else {
				form.on1.value = "";
				return true;
			}
		}
		
		function checkAmount(form) {
			if(isNaN(form.amount.value)) {
				alert("Please enter a number");
				form.amount.value = "";
				form.amount.focus();
				return false;
			} else if(form.amount.value == null || form.amount.value == "") {
				alert("Please enter a donaiton amount");
				form.amount.focus();
				return false;
			} else {
				return canSubmit(form);
			}
		}
		
		function init() {
			if(document.one) {
				var familyForm = document.one;
				familyForm.onsubmit = function () {
					return canSubmit(this);
				}
			}
			
			if(document.twofifty) {
				var twofifty = document.twofifty;
				twofifty.onsubmit = function () {
					return canSubmit(this);
				}
			}
			
			if(document.five) {
				var five = document.five;
				five.onsubmit = function () {
					return canSubmit(this);
				}
			}
			
			if(document.any) {
				var any = document.any;
				any.onsubmit = function () {
					return checkAmount(this);
				}
			}
		}
	
	document.observe('dom:loaded', function () { init(); });