function checkAmount(){
    myRegExp = /^\d+$/;
    myNumber = document.DonateForm.x_Amount.value; 
    if(myRegExp.test(myNumber) == false) {
      alert ("Please only enter numbers in the text box for the donation amount");
	return false;
    }
    if (myNumber < 11){
	alert ("Please note that the minimum amount accepted is $11.00");
        return false;
    }
    return true;
}
