function CheckOut() {
	
		if (document.buy.agreement.checked==false) {
			alert("To proceed with your deposit, you need to check the box saying you agree to our policies. Thanks.");
			return false;				
		}
			
	
		if (document.buy.x_Amount.value > 0) { 
			return true;
		} else {
			alert("There is a problem with your transaction. Please contact us by email. Thank you.");
			return false;	
		}

}