function showPrice(div,amount) {
document.getElementById(div).innerHTML = amount;
}
function showPrice2(amount1, amount2) {
	document.cart_quantity.price.value = amount2;
	if (document.cart_quantity.memba.value == 'y') { 
		document.cart_quantity.price.value = amount1;
	}
}