function addToCart(addType,planter) {
	document.orderplanter.addType.value = addType;
	document.orderplanter.planter.value = planter;
	document.orderplanter.submit();
}

function removeFromCart(cartID) {
	document.shopcart.action.value = "remove";
	document.shopcart.cartID.value = cartID;
	document.shopcart.submit();
}

function updateCart() {
	document.shopcart.action.value = "update";
	document.shopcart.submit();
}

function checkout() {
	eval("location.href='checkout.php'")
}