function showDiv(id) {
	document.getElementById(id).style.display = 'block';
}

function hideDiv(id) {
	document.getElementById(id).style.display = 'none';
}

function hideContributionLength(){
	hideDiv("monthly_commitment");
}

function showContributionLength(){
	showDiv("monthly_commitment");
}

function hideGivingMethodBank(){
	hideDiv("divGivingMethodCard");
	hideDiv("divGivingMethodPo");
	showDiv("divGivingMethodBank");
}

function hideGivingMethodCard(){
	hideDiv("divGivingMethodBank");
	hideDiv("divGivingMethodPo");
	showDiv("divGivingMethodCard");
}

function hideGivingMethodPo(){
	hideDiv("divGivingMethodBank");
	showDiv("divGivingMethodPo");
	hideDiv("divGivingMethodCard");
}
