function showhidedelivery() {
	if (document.getElementById('deliverytype1').checked) {
		document.getElementById('deliveryoptions').style.display = '';
	} else {
		document.getElementById('deliveryoptions').style.display = 'none';
	}
}

function terms_and_conditions() {
		 var apPickWindow = window.open('terms_and_conditions.asp','terms_and_conditions','dependent=yes,resizable="1",scrollbars=yes,status="1",width=400,height=500');
		 apPickWindow.focus();
}

function membership_terms_and_conditions() {
		 var apPickWindow = window.open('membership_terms_and_conditions.asp','membership_terms_and_conditions','dependent=yes,resizable="1",scrollbars=yes,status="1",width=400,height=500');
		 apPickWindow.focus();
}

function confirmStandingOrderDelete() {
	var ans;
	ans=window.confirm('Are you sure you wish to delete this Standing Order?');

	if (ans==true) {
		return true;
	} else {
		return false;
	}
}

function showhide(id) {

	if(document.getElementById(id).style.display == ''){
		document.getElementById(id).style.display = 'none'
	}else{
		document.getElementById(id).style.display = ''
	}
}