
function updateDescription()
{
	var gift_category = document.getElementById("gift_category");
	var gift_honor = document.getElementById("gift_honor");
	var gift_memory = document.getElementById("gift_memory");
	var gift_notify = document.getElementById("gift_notify");
	var learned = document.getElementById("learned");

	var description = 'Gift Category: '+gift_category.options[gift_category.selectedIndex].value;
	if(gift_honor.value)
		description += ';  Gift in honor of: '+gift_honor.value;
	if(gift_memory.value)
		description += '; Gift in memory of: '+gift_memory.value;
	if(gift_notify.value)
		description += '; Notify this person: '+gift_notify.value;
	if(learned.value)
		description += '; Learned about Avenidas from: '+learned.options[learned.selectedIndex].value;
	
	var description_input = document.getElementById("DESCRIPTION");
	document.donate.DESCRIPTION.value = description;
}

function updateAmount()
{	
	document.donate.AMOUNT.value = document.donate.amount_field.value;
}


function checkJavascript()
{
	var donate_disclaimer = document.getElementById('donate_disclaimer');
	donate_disclaimer.style.display = "none";
}