function SendIf(checked, totaal) {
	if (checked==true){
		if (totaal == 0){
			alert("Please note, if the total cost appears as 0,00 GBP, your computer may have disabled the 'cookies' required to pay by credit card. You may still submit this order, but you must enter your telephone number. We can then contact you to discuss delivery and payment options.")
		}
		document.order.submit()
		}
	else {
		alert("To send this order, you must agree to the given terms")
		}
	}

function SetAction() {
        document.order.action = "afronden.php"
	document.order.submit()
}

function subTo() {
	if (pakket.document.title=="Shopping cart") {
		pakket.document.bestelling.action = "bestel.php"
		pakket.document.bestelling.submit()
	}
}

function subTo2() {
	document.bestelling.action = "bestel.php"
	document.bestelling.submit()
}