function chkDonors01()
{
	
amountChoice = document.mainform.amount.selectedIndex 
if (document.mainform.amount.options[amountChoice].value == "")
	{
		alert
		("Please choose a donation amount from the drop list.");
		document.mainform.amount.focus();
		return false;
	}


if (document.mainform.amount.options[amountChoice].value == "Other"  && document.mainform.otheramount.value == "" )
	{
		alert
		("Please specify a donation amount since you chose Other.");
		document.mainform.otheramount.focus();
		return false;
	}
	
if (document.mainform.amount.options[amountChoice].value == "Other"  && document.mainform.otheramount.value < 5)
	{
		alert
		("Sorry, the minimum donation amount is $5.");
		document.mainform.otheramount.focus();
		return false;
	}
	
}



