function donation_Validator(theForm) {
/*  if ((theForm.otheramount.value != '') && (isNaN(theForm.otheramount.value))) {
        alert("The number entered in the \"Other Amount\" field is not a valid dollar amount.");
	    theForm.otheramount.focus();
		return (false);
    }
*/
    if ((theForm.contirbutionamount.value != '') && (isNaN(theForm.contirbutionamount.value))) {
        alert("The number entered in the \"Contribution Amount\" field is not a valid dollar amount.");
	    theForm.contirbutionamount.focus();
		return (false);
    }
	return (true);
}