function ToggleVisibility() {
	if(document.OrderForm.donation.checked == true) {
		document.getElementById('DonationOptions').style.visibility="visible";
	}
	else if(document.OrderForm.donation.checked == false) {
		document.getElementById('DonationOptions').style.visibility="hidden";
		document.getElementById('OtherDonation').style.visibility="hidden";
		document.getElementById('PremierOptions').style.visibility="hidden";
		document.getElementById('DonationAmount30Radio').checked = true;
	}
}

function ToggleOtherDonationVisibility() {
	if(document.getElementById('DonationAmountOtherRadio').checked == true) {
		document.getElementById('OtherDonation').style.visibility="visible";
	}
	else if(document.getElementById('DonationAmount100Radio').checked == true) {
		document.getElementById('OtherDonation').style.visibility="hidden";
		document.getElementById('PremierOptions').style.visibility="visible";
	}
	else if(document.getElementById('DonationAmountOtherRadio').checked == false && document.getElementById('DonationAmount100Radio').checked == false) {
		document.getElementById('OtherDonation').style.visibility="hidden";
		document.getElementById('PremierOptions').style.visibility="hidden";
	}
	else{
		document.getElementById('OtherDonation').style.visibility="hidden";
	}
}

function CheckCustomDonationAmount() {
	if(document.OrderForm.OtherDonationTextfield.value > 100) {
		document.getElementById('PremierOptions').style.visibility="visible";
	}
	else if(document.OrderForm.OtherDonationTextfield.value < 100) {
		document.getElementById('PremierOptions').style.visibility="hidden";
	}
}

function ResetForm() {
document.OrderForm.OrderDVDSelect.selectedIndex = 1;
document.OrderForm.donation.checked = false;
document.OrderForm.OtherDonationTextfield.value = 150;
document.getElementById('DonationAmount30Radio').checked = true;
document.OrderForm.item_name.value = "Bruce Fraser Tribute - 1 DVD";
document.OrderForm.amount.value = "0.01";
document.OrderForm.shipping.value = "7.49";
}

function GetPayPalItem() {
	if(document.OrderForm.donation.checked == false) {
		if(document.OrderForm.OrderDVDSelect.selectedIndex == 0) {
			alert("Please select DVD(s) and/or donation before checking out.");
		}
		else if(document.OrderForm.OrderDVDSelect.selectedIndex == 1) {
			document.OrderForm.item_name.value = "Bruce Fraser Tribute - 1 DVD";
			document.OrderForm.amount.value = "0.01";
			document.OrderForm.shipping.value = "7.49";
		}
		else if(document.OrderForm.OrderDVDSelect.selectedIndex == 2) {
			document.OrderForm.item_name.value = "Bruce Fraser Tribute - 2 DVDs";
			document.OrderForm.amount.value = "0.01";
			document.OrderForm.shipping.value = "8.99";
		}
		else if(document.OrderForm.OrderDVDSelect.selectedIndex == 3) {
			document.OrderForm.item_name.value = "Bruce Fraser Tribute - 3 DVDs";
			document.OrderForm.amount.value = "0.01";
			document.OrderForm.shipping.value = "10.49";
		}
		else if(document.OrderForm.OrderDVDSelect.selectedIndex == 4) {
			document.OrderForm.item_name.value = "Bruce Fraser Tribute - 4 DVDs";
			document.OrderForm.amount.value = "0.01";
			document.OrderForm.shipping.value = "11.99";
		}
		else if(document.OrderForm.OrderDVDSelect.selectedIndex == 5) {
			document.OrderForm.item_name.value = "Bruce Fraser Tribute - 5 DVDs";
			document.OrderForm.amount.value = "0.01";
			document.OrderForm.shipping.value = "13.49";
		}
		else if(document.OrderForm.OrderDVDSelect.selectedIndex == 6) {
			document.OrderForm.item_name.value = "Bruce Fraser Tribute - 6 DVDs";
			document.OrderForm.amount.value = "0.01";
			document.OrderForm.shipping.value = "14.99";
		}
	}
	else if(document.OrderForm.donation.checked == true) {
		if(document.getElementById('DonationAmount30Radio').checked == true) {
			if(document.OrderForm.OrderDVDSelect.selectedIndex == 0) {
				document.OrderForm.item_name.value = "Bruce Fraser Tribute - (No DVD) $30 Donation";
				document.OrderForm.amount.value = "30.00";
				document.OrderForm.shipping.value = "0.00";
			}
			else if(document.OrderForm.OrderDVDSelect.selectedIndex == 1) {
				document.OrderForm.item_name.value = "Bruce Fraser Tribute - 1 DVD + $30 Donation";
				document.OrderForm.amount.value = "30.01";
				document.OrderForm.shipping.value = "7.49";
			}
			else if(document.OrderForm.OrderDVDSelect.selectedIndex == 2) {
				document.OrderForm.item_name.value = "Bruce Fraser Tribute - 2 DVDs + $30 Donation";
				document.OrderForm.amount.value = "30.01";
				document.OrderForm.shipping.value = "8.99";
			}
			else if(document.OrderForm.OrderDVDSelect.selectedIndex == 3) {
				document.OrderForm.item_name.value = "Bruce Fraser Tribute - 3 DVDs + $30 Donation";
				document.OrderForm.amount.value = "30.01";
				document.OrderForm.shipping.value = "10.49";
			}
			else if(document.OrderForm.OrderDVDSelect.selectedIndex == 4) {
				document.OrderForm.item_name.value = "Bruce Fraser Tribute - 4 DVDs + $30 Donation";
				document.OrderForm.amount.value = "30.01";
				document.OrderForm.shipping.value = "11.99";
			}
			else if(document.OrderForm.OrderDVDSelect.selectedIndex == 5) {
				document.OrderForm.item_name.value = "Bruce Fraser Tribute - 5 DVDs + $30 Donation";
				document.OrderForm.amount.value = "30.01";
				document.OrderForm.shipping.value = "13.49";
			}
			else if(document.OrderForm.OrderDVDSelect.selectedIndex == 6) {
				document.OrderForm.item_name.value = "Bruce Fraser Tribute - 6 DVDs + $30 Donation";
				document.OrderForm.amount.value = "30.01";
				document.OrderForm.shipping.value = "14.99";
			}
		}
		else if(document.getElementById('DonationAmount50Radio').checked == true) {
			if(document.OrderForm.OrderDVDSelect.selectedIndex == 0) {
				document.OrderForm.item_name.value = "Bruce Fraser Tribute - (No DVD) $50 Donation";
				document.OrderForm.amount.value = "50.00";
				document.OrderForm.shipping.value = "0.00";
			}
			else if(document.OrderForm.OrderDVDSelect.selectedIndex == 1) {
				document.OrderForm.item_name.value = "Bruce Fraser Tribute - 1 DVD + $50 Donation";
				document.OrderForm.amount.value = "50.01";
				document.OrderForm.shipping.value = "7.49";
			}
			else if(document.OrderForm.OrderDVDSelect.selectedIndex == 2) {
				document.OrderForm.item_name.value = "Bruce Fraser Tribute - 2 DVDs + $50 Donation";
				document.OrderForm.amount.value = "50.01";
				document.OrderForm.shipping.value = "8.99";
			}
			else if(document.OrderForm.OrderDVDSelect.selectedIndex == 3) {
				document.OrderForm.item_name.value = "Bruce Fraser Tribute - 3 DVDs + $50 Donation";
				document.OrderForm.amount.value = "50.01";
				document.OrderForm.shipping.value = "10.49";
			}
			else if(document.OrderForm.OrderDVDSelect.selectedIndex == 4) {
				document.OrderForm.item_name.value = "Bruce Fraser Tribute - 4 DVDs + $50 Donation";
				document.OrderForm.amount.value = "50.01";
				document.OrderForm.shipping.value = "11.99";
			}
			else if(document.OrderForm.OrderDVDSelect.selectedIndex == 5) {
				document.OrderForm.item_name.value = "Bruce Fraser Tribute - 5 DVDs + $50 Donation";
				document.OrderForm.amount.value = "50.01";
				document.OrderForm.shipping.value = "13.49";
			}
			else if(document.OrderForm.OrderDVDSelect.selectedIndex == 6) {
				document.OrderForm.item_name.value = "Bruce Fraser Tribute - 6 DVDs + $50 Donation";
				document.OrderForm.amount.value = "50.01";
				document.OrderForm.shipping.value = "14.99";
			}
		}
		else if(document.getElementById('DonationAmount100Radio').checked == true) {
			if(document.OrderForm.PremierOptionSelect.selectedIndex == 0) {
				if(document.OrderForm.OrderDVDSelect.selectedIndex == 0) {
					document.OrderForm.item_name.value = "Bruce Fraser Tribute - (No DVD) $100 Donation (No Keepsake)";
					document.OrderForm.amount.value = "100.00";
					document.OrderForm.shipping.value = "0.00";
				}
				else if(document.OrderForm.OrderDVDSelect.selectedIndex == 1) {
					document.OrderForm.item_name.value = "Bruce Fraser Tribute - 1 DVD + $100 Donation (No Keepsake)";
					document.OrderForm.amount.value = "100.00";
					document.OrderForm.shipping.value = "7.50";
				}
				else if(document.OrderForm.OrderDVDSelect.selectedIndex == 2) {
					document.OrderForm.item_name.value = "Bruce Fraser Tribute - 2 DVDs + $100 Donation (No Keepsake)";
					document.OrderForm.amount.value = "100.01";
					document.OrderForm.shipping.value = "8.99";
				}
				else if(document.OrderForm.OrderDVDSelect.selectedIndex == 3) {
					document.OrderForm.item_name.value = "Bruce Fraser Tribute - 3 DVDs + $100 Donation (No Keepsake)";
					document.OrderForm.amount.value = "100.01";
					document.OrderForm.shipping.value = "10.49";
				}
				else if(document.OrderForm.OrderDVDSelect.selectedIndex == 4) {
					document.OrderForm.item_name.value = "Bruce Fraser Tribute - 4 DVDs + $100 Donation (No Keepsake)";
					document.OrderForm.amount.value = "100.01";
					document.OrderForm.shipping.value = "11.99";
				}
				else if(document.OrderForm.OrderDVDSelect.selectedIndex == 5) {
					document.OrderForm.item_name.value = "Bruce Fraser Tribute - 5 DVDs + $100 Donation (No Keepsake)";
					document.OrderForm.amount.value = "100.01";
					document.OrderForm.shipping.value = "13.49";
				}
				else if(document.OrderForm.OrderDVDSelect.selectedIndex == 6) {
					document.OrderForm.item_name.value = "Bruce Fraser Tribute - 6 DVDs + $100 Donation (No Keepsake)";
					document.OrderForm.amount.value = "100.01";
					document.OrderForm.shipping.value = "14.99";
				}
			}
			else if(document.OrderForm.PremierOptionSelect.selectedIndex == 1) {
				if(document.OrderForm.OrderDVDSelect.selectedIndex == 0) {
					document.OrderForm.item_name.value = "Bruce Fraser Tribute - (No DVD) $100 Donation + Commemorative Set";
					document.OrderForm.amount.value = "100.00";
					document.OrderForm.shipping.value = "0.00";
				}
				else if(document.OrderForm.OrderDVDSelect.selectedIndex == 1) {
					document.OrderForm.item_name.value = "Bruce Fraser Tribute - 1 DVD + $100 Donation + Commemorative Set";
					document.OrderForm.amount.value = "100.01";
					document.OrderForm.shipping.value = "7.49";
				}
				else if(document.OrderForm.OrderDVDSelect.selectedIndex == 2) {
					document.OrderForm.item_name.value = "Bruce Fraser Tribute - 2 DVDs + $100 Donation + Commemorative Set";
					document.OrderForm.amount.value = "100.01";
					document.OrderForm.shipping.value = "8.99";
				}
				else if(document.OrderForm.OrderDVDSelect.selectedIndex == 3) {
					document.OrderForm.item_name.value = "Bruce Fraser Tribute - 3 DVDs + $100 Donation + Commemorative Set";
					document.OrderForm.amount.value = "100.01";
					document.OrderForm.shipping.value = "10.49";
				}
				else if(document.OrderForm.OrderDVDSelect.selectedIndex == 4) {
					document.OrderForm.item_name.value = "Bruce Fraser Tribute - 4 DVDs + $100 Donation + Commemorative Set";
					document.OrderForm.amount.value = "100.01";
					document.OrderForm.shipping.value = "11.99";
				}
				else if(document.OrderForm.OrderDVDSelect.selectedIndex == 5) {
					document.OrderForm.item_name.value = "Bruce Fraser Tribute - 5 DVDs + $100 Donation + Commemorative Set";
					document.OrderForm.amount.value = "100.01";
					document.OrderForm.shipping.value = "13.49";
				}
				else if(document.OrderForm.OrderDVDSelect.selectedIndex == 6) {
					document.OrderForm.item_name.value = "Bruce Fraser Tribute - 6 DVDs + $100 Donation + Commemorative Set";
					document.OrderForm.amount.value = "100.01";
					document.OrderForm.shipping.value = "14.99";
				}
			}
			else if(document.OrderForm.PremierOptionSelect.selectedIndex == 2) {
				if(document.OrderForm.OrderDVDSelect.selectedIndex == 0) {
					document.OrderForm.item_name.value = "Bruce Fraser Tribute - (No DVD) $100 Donation + Limited Edition Print";
					document.OrderForm.amount.value = "100.00";
					document.OrderForm.shipping.value = "0.00";
				}
				else if(document.OrderForm.OrderDVDSelect.selectedIndex == 1) {
					document.OrderForm.item_name.value = "Bruce Fraser Tribute - 1 DVD + $100 Donation + Limited Edition Print";
					document.OrderForm.amount.value = "100.01";
					document.OrderForm.shipping.value = "7.49";
				}
				else if(document.OrderForm.OrderDVDSelect.selectedIndex == 2) {
					document.OrderForm.item_name.value = "Bruce Fraser Tribute - 2 DVDs + $100 Donation + Limited Edition Print";
					document.OrderForm.amount.value = "100.01";
					document.OrderForm.shipping.value = "8.99";
				}
				else if(document.OrderForm.OrderDVDSelect.selectedIndex == 3) {
					document.OrderForm.item_name.value = "Bruce Fraser Tribute - 3 DVDs + $100 Donation + Limited Edition Print";
					document.OrderForm.amount.value = "100.01";
					document.OrderForm.shipping.value = "10.49";
				}
				else if(document.OrderForm.OrderDVDSelect.selectedIndex == 4) {
					document.OrderForm.item_name.value = "Bruce Fraser Tribute - 4 DVDs + $100 Donation + Limited Edition Print";
					document.OrderForm.amount.value = "100.01";
					document.OrderForm.shipping.value = "11.99";
				}
				else if(document.OrderForm.OrderDVDSelect.selectedIndex == 5) {
					document.OrderForm.item_name.value = "Bruce Fraser Tribute - 5 DVDs + $100 Donation + Limited Edition Print";
					document.OrderForm.amount.value = "100.01";
					document.OrderForm.shipping.value = "13.49";
				}
				else if(document.OrderForm.OrderDVDSelect.selectedIndex == 6) {
					document.OrderForm.item_name.value = "Bruce Fraser Tribute - 6 DVDs + $100 Donation + Limited Edition Print";
					document.OrderForm.amount.value = "100.01";
					document.OrderForm.shipping.value = "14.99";
				}
			}
		}
		else if(document.getElementById('DonationAmountOtherRadio').checked == true) {
			if(eval(document.OrderForm.OtherDonationTextfield.value) > 100) {
				if(document.OrderForm.PremierOptionSelect.selectedIndex == 0) {
					if(document.OrderForm.OrderDVDSelect.selectedIndex == 0) {
						var DonationAmount = document.OrderForm.OtherDonationTextfield.value;
						var PayPalAmount = eval(DonationAmount);
						document.OrderForm.item_name.value = "Bruce Fraser Tribute - (No DVD) $"+DonationAmount+" Donation (No Keepsake)";
						document.OrderForm.amount.value = PayPalAmount;
						document.OrderForm.shipping.value = "0.00";
					}
					else if(document.OrderForm.OrderDVDSelect.selectedIndex == 1) {
						var DonationAmount = document.OrderForm.OtherDonationTextfield.value;
						var PayPalAmount = eval(DonationAmount) + 0.01;
						document.OrderForm.item_name.value = "Bruce Fraser Tribute - 1 DVD + $"+DonationAmount+" Donation (No Keepsake)";
						document.OrderForm.amount.value = PayPalAmount;
						document.OrderForm.shipping.value = "7.49";
					}
					else if(document.OrderForm.OrderDVDSelect.selectedIndex == 2) {
						var DonationAmount = document.OrderForm.OtherDonationTextfield.value;
						var PayPalAmount = eval(DonationAmount) + 0.01;
						document.OrderForm.item_name.value = "Bruce Fraser Tribute - 2 DVDs + $"+DonationAmount+" Donation (No Keepsake)";
						document.OrderForm.amount.value = PayPalAmount;
						document.OrderForm.shipping.value = "8.99";
					}
					else if(document.OrderForm.OrderDVDSelect.selectedIndex == 3) {
						var DonationAmount = document.OrderForm.OtherDonationTextfield.value;
						var PayPalAmount = eval(DonationAmount) + 0.01;
						document.OrderForm.item_name.value = "Bruce Fraser Tribute - 3 DVDs + $"+DonationAmount+" Donation (No Keepsake)";
						document.OrderForm.amount.value = PayPalAmount;
						document.OrderForm.shipping.value = "10.49";
					}
					else if(document.OrderForm.OrderDVDSelect.selectedIndex == 4) {
						var DonationAmount = document.OrderForm.OtherDonationTextfield.value;
						var PayPalAmount = eval(DonationAmount) + 0.01;
						document.OrderForm.item_name.value = "Bruce Fraser Tribute - 4 DVDs + $"+DonationAmount+" Donation (No Keepsake)";
						document.OrderForm.amount.value = PayPalAmount;
						document.OrderForm.shipping.value = "11.99";
					}
					else if(document.OrderForm.OrderDVDSelect.selectedIndex == 5) {
						var DonationAmount = document.OrderForm.OtherDonationTextfield.value;
						var PayPalAmount = eval(DonationAmount) + 0.01;
						document.OrderForm.item_name.value = "Bruce Fraser Tribute - 5 DVDs + $"+DonationAmount+" Donation (No Keepsake)";
						document.OrderForm.amount.value = PayPalAmount;
						document.OrderForm.shipping.value = "13.49";
					}
					else if(document.OrderForm.OrderDVDSelect.selectedIndex == 6) {
						var DonationAmount = document.OrderForm.OtherDonationTextfield.value;
						var PayPalAmount = eval(DonationAmount) + 0.01;
						document.OrderForm.item_name.value = "Bruce Fraser Tribute - 6 DVDs + $"+DonationAmount+" Donation (No Keepsake)";
						document.OrderForm.amount.value = PayPalAmount;
						document.OrderForm.shipping.value = "14.99";
					}
				}
				else if(document.OrderForm.PremierOptionSelect.selectedIndex == 1) {
					if(document.OrderForm.OrderDVDSelect.selectedIndex == 0) {
						var DonationAmount = document.OrderForm.OtherDonationTextfield.value;
						var PayPalAmount = eval(DonationAmount) + 0.00;
						document.OrderForm.item_name.value = "Bruce Fraser Tribute - (No DVD) $"+DonationAmount+" Donation + Commemorative Set";
						document.OrderForm.amount.value = PayPalAmount;
						document.OrderForm.shipping.value = "0.00";
					}
					else if(document.OrderForm.OrderDVDSelect.selectedIndex == 1) {
						var DonationAmount = document.OrderForm.OtherDonationTextfield.value;
						var PayPalAmount = eval(DonationAmount) + 0.01;
						document.OrderForm.item_name.value = "Bruce Fraser Tribute - 1 DVD + $"+DonationAmount+" Donation + Commemorative Set";
						document.OrderForm.amount.value = PayPalAmount;
						document.OrderForm.shipping.value = "7.49";
					}
					else if(document.OrderForm.OrderDVDSelect.selectedIndex == 2) {
						var DonationAmount = document.OrderForm.OtherDonationTextfield.value;
						var PayPalAmount = eval(DonationAmount) + 0.01;
						document.OrderForm.item_name.value = "Bruce Fraser Tribute - 2 DVDs + $"+DonationAmount+" Donation + Commemorative Set";
						document.OrderForm.amount.value = PayPalAmount;
						document.OrderForm.shipping.value = "8.99";
					}
					else if(document.OrderForm.OrderDVDSelect.selectedIndex == 3) {
						var DonationAmount = document.OrderForm.OtherDonationTextfield.value;
						var PayPalAmount = eval(DonationAmount) + 0.01;
						document.OrderForm.item_name.value = "Bruce Fraser Tribute - 3 DVDs + $"+DonationAmount+" Donation + Commemorative Set";
						document.OrderForm.amount.value = PayPalAmount;
						document.OrderForm.shipping.value = "10.49";
					}
					else if(document.OrderForm.OrderDVDSelect.selectedIndex == 4) {
						var DonationAmount = document.OrderForm.OtherDonationTextfield.value;
						var PayPalAmount = eval(DonationAmount) + 0.01;
						document.OrderForm.item_name.value = "Bruce Fraser Tribute - 4 DVDs + $"+DonationAmount+" Donation + Commemorative Set";
						document.OrderForm.amount.value = PayPalAmount;
						document.OrderForm.shipping.value = "11.99";
					}
					else if(document.OrderForm.OrderDVDSelect.selectedIndex == 5) {
						var DonationAmount = document.OrderForm.OtherDonationTextfield.value;
						var PayPalAmount = eval(DonationAmount) + 0.01;
						document.OrderForm.item_name.value = "Bruce Fraser Tribute - 5 DVDs + $"+DonationAmount+" Donation + Commemorative Set";
						document.OrderForm.amount.value = PayPalAmount;
						document.OrderForm.shipping.value = "13.49";
					}
					else if(document.OrderForm.OrderDVDSelect.selectedIndex == 6) {
						var DonationAmount = document.OrderForm.OtherDonationTextfield.value;
						var PayPalAmount = eval(DonationAmount) + 0.01;
						document.OrderForm.item_name.value = "Bruce Fraser Tribute - 6 DVDs + $"+DonationAmount+" Donation + Commemorative Set";
						document.OrderForm.amount.value = PayPalAmount;
						document.OrderForm.shipping.value = "14.99";
					}
				}
				else if(document.OrderForm.PremierOptionSelect.selectedIndex == 2) {
					if(document.OrderForm.OrderDVDSelect.selectedIndex == 0) {
						var DonationAmount = document.OrderForm.OtherDonationTextfield.value;
						var PayPalAmount = eval(DonationAmount) + 0.00;
						document.OrderForm.item_name.value = "Bruce Fraser Tribute - (No DVD) $"+DonationAmount+" Donation + Limited Edition Print";
						document.OrderForm.amount.value = PayPalAmount;
						document.OrderForm.shipping.value = "0.00";
					}
					else if(document.OrderForm.OrderDVDSelect.selectedIndex == 1) {
						var DonationAmount = document.OrderForm.OtherDonationTextfield.value;
						var PayPalAmount = eval(DonationAmount) + 0.01;
						document.OrderForm.item_name.value = "Bruce Fraser Tribute - 1 DVD + $"+DonationAmount+" Donation + Limited Edition Print";
						document.OrderForm.amount.value = PayPalAmount;
						document.OrderForm.shipping.value = "7.49";
					}
					else if(document.OrderForm.OrderDVDSelect.selectedIndex == 2) {
						var DonationAmount = document.OrderForm.OtherDonationTextfield.value;
						var PayPalAmount = eval(DonationAmount) + 0.01;
						document.OrderForm.item_name.value = "Bruce Fraser Tribute - 2 DVDs + $"+DonationAmount+" Donation + Limited Edition Print";
						document.OrderForm.amount.value = PayPalAmount;
						document.OrderForm.shipping.value = "8.99";
					}
					else if(document.OrderForm.OrderDVDSelect.selectedIndex == 3) {
						var DonationAmount = document.OrderForm.OtherDonationTextfield.value;
						var PayPalAmount = eval(DonationAmount) + 0.01;
						document.OrderForm.item_name.value = "Bruce Fraser Tribute - 3 DVDs + $"+DonationAmount+" Donation + Limited Edition Print";
						document.OrderForm.amount.value = PayPalAmount;
						document.OrderForm.shipping.value = "10.49";
					}
					else if(document.OrderForm.OrderDVDSelect.selectedIndex == 4) {
						var DonationAmount = document.OrderForm.OtherDonationTextfield.value;
						var PayPalAmount = eval(DonationAmount) + 0.01;
						document.OrderForm.item_name.value = "Bruce Fraser Tribute - 4 DVDs + $"+DonationAmount+" Donation + Limited Edition Print";
						document.OrderForm.amount.value = PayPalAmount;
						document.OrderForm.shipping.value = "11.99";
					}
					else if(document.OrderForm.OrderDVDSelect.selectedIndex == 5) {
						var DonationAmount = document.OrderForm.OtherDonationTextfield.value;
						var PayPalAmount = eval(DonationAmount) + 0.01;
						document.OrderForm.item_name.value = "Bruce Fraser Tribute - 5 DVDs + $"+DonationAmount+" Donation + Limited Edition Print";
						document.OrderForm.amount.value = PayPalAmount;
						document.OrderForm.shipping.value = "13.49";
					}
					else if(document.OrderForm.OrderDVDSelect.selectedIndex == 6) {
						var DonationAmount = document.OrderForm.OtherDonationTextfield.value;
						var PayPalAmount = eval(DonationAmount) + 0.01;
						document.OrderForm.item_name.value = "Bruce Fraser Tribute - 6 DVDs + $"+DonationAmount+" Donation + Limited Edition Print";
						document.OrderForm.amount.value = PayPalAmount;
						document.OrderForm.shipping.value = "14.99";
					}
				}
			}
			else{
				if(document.OrderForm.OrderDVDSelect.selectedIndex == 0) {
					var DonationAmount = document.OrderForm.OtherDonationTextfield.value;
					var PayPalAmount = eval(DonationAmount) + 0.00;
					document.OrderForm.item_name.value = "Bruce Fraser Tribute - (No DVD) $"+DonationAmount+" Donation";
					document.OrderForm.amount.value = PayPalAmount;
					document.OrderForm.shipping.value = "0.00";
				}
				else if(document.OrderForm.OrderDVDSelect.selectedIndex == 1) {
					var DonationAmount = document.OrderForm.OtherDonationTextfield.value;
					var PayPalAmount = eval(DonationAmount) + 0.01;
					document.OrderForm.item_name.value = "Bruce Fraser Tribute - 1 DVD + $"+DonationAmount+" Donation";
					document.OrderForm.amount.value = PayPalAmount;
					document.OrderForm.shipping.value = "7.49";
				}
				else if(document.OrderForm.OrderDVDSelect.selectedIndex == 2) {
					var DonationAmount = document.OrderForm.OtherDonationTextfield.value;
					var PayPalAmount = eval(DonationAmount) + 0.01;
					document.OrderForm.item_name.value = "Bruce Fraser Tribute - 2 DVDs + $"+DonationAmount+" Donation";
					document.OrderForm.amount.value = PayPalAmount;
					document.OrderForm.shipping.value = "8.99";
				}
				else if(document.OrderForm.OrderDVDSelect.selectedIndex == 3) {
					var DonationAmount = document.OrderForm.OtherDonationTextfield.value;
					var PayPalAmount = eval(DonationAmount) + 0.01;
					document.OrderForm.item_name.value = "Bruce Fraser Tribute - 3 DVDs + $"+DonationAmount+" Donation";
					document.OrderForm.amount.value = PayPalAmount;
					document.OrderForm.shipping.value = "10.49";
				}
				else if(document.OrderForm.OrderDVDSelect.selectedIndex == 4) {
					var DonationAmount = document.OrderForm.OtherDonationTextfield.value;
					var PayPalAmount = eval(DonationAmount) + 0.01;
					document.OrderForm.item_name.value = "Bruce Fraser Tribute - 4 DVDs + $"+DonationAmount+" Donation";
					document.OrderForm.amount.value = PayPalAmount;
					document.OrderForm.shipping.value = "11.99";
				}
				else if(document.OrderForm.OrderDVDSelect.selectedIndex == 5) {
					var DonationAmount = document.OrderForm.OtherDonationTextfield.value;
					var PayPalAmount = eval(DonationAmount) + 0.01;
					document.OrderForm.item_name.value = "Bruce Fraser Tribute - 5 DVDs + $"+DonationAmount+" Donation";
					document.OrderForm.amount.value = PayPalAmount;
					document.OrderForm.shipping.value = "13.49";
				}
				else if(document.OrderForm.OrderDVDSelect.selectedIndex == 6) {
					var DonationAmount = document.OrderForm.OtherDonationTextfield.value;
					var PayPalAmount = eval(DonationAmount) + 0.01;
					document.OrderForm.item_name.value = "Bruce Fraser Tribute - 6 DVDs + $"+DonationAmount+" Donation";
					document.OrderForm.amount.value = PayPalAmount;
					document.OrderForm.shipping.value = "14.99";
				}
			}
		}
	}
}