function ProcessDonation()
{

if(document.harmtohome.donatetype[0].checked == true) {
document.harmtohome.action = 'http://www.fromharmtohome.org/cart/add/'+document.harmtohome.donatetype[0].value+'?destination=cart';
}else
if(document.harmtohome.donatetype[1].checked == true) {
document.harmtohome.action = 'http://www.fromharmtohome.org/cart/add/'+document.harmtohome.donatetype[1].value+'?destination=cart';
}else
if(document.harmtohome.donatetype[2].checked == true) {
document.harmtohome.action = 'http://www.fromharmtohome.org/cart/add/'+document.harmtohome.donatetype[2].value+'?destination=cart';
}else
if(document.harmtohome.donatetype[3].checked == true) {
document.harmtohome.action = 'http://www.fromharmtohome.org/cart/add/'+document.harmtohome.donatetype[3].value+'?destination=cart';
}else
{
	alert('Please select a donation value to proceed.');
	return false;
}
return true;
}

function leftMidClick() {
	document.getElementById('front-center-right').style.display='none';
	document.getElementById('front-center-left').style.display='block';
}

function rightMidClick() {
	document.getElementById('front-center-right').style.display='block';
	document.getElementById('front-center-left').style.display='none';
}
