/* This script was created by Amanda Byrne to control the price based on the quantity for Paypal */

function setPrice() {
	var txtqty
	txtqty = document.BTTB.quantity.value;
		if (txtqty > "1") {
		document.BTTB.amount.value  = "125.00"
		} else {
		document.MyForm.amount.value  = "125.00"
		}
		}
