function validateDonation(form){
	var FLAG=true;
	var error_string="";

	if(form.value.value=="")
	{
		error_string="Please enter donation amount";
		FLAG=false;
	}
	else if(form.value.value < 10 )
	{
		error_string="Donation Amount should be greater than $10";
		FLAG=false;
	}
	else if(form.value.value > 10000 )
	{
		error_string="Donation Amount should be less than $10,000";
		FLAG=false;
	}
	else if(true)
	{
		var result=/^[0-9]+(\.[0-9]+)?$/.test(form.value.value);
        if(result==false)
        {
            error_string="Please enter numbers and decimal only for your donation (not $ or ,).";
            FLAG=false;
        }
	}

	if(error_string!="")
	{
		alert(error_string);
	}

	return FLAG;
}