function handleParent(parentId)
{
	myParent = document.getElementById("menu" + parentId)

	if (myParent.style.display=="none") {
		myParent.style.display="block"
	} else {
		myParent.style.display="none"
	}
}

//clear form (use when form default values filled in from session data)
function clearDonationForm() {
	for (var i = 0; i < document.forms.donate.elements.length; i++) {
		if (document.forms.donate.elements[i].type == 'text' || 'TEXTAREA' == document.forms.donate.elements[i].tagName)
			document.forms.donate.elements[i].value = "";
	}
}
// submit plain form
function SubmitForm(url,aform)
{   //alert(document.forms[0].name);
	document.forms[0].name = aform;
	document.forms[0].action = url;
	document.forms[0].submit();
	return true;
}
