/*	It's eShop6 Shopping Cart Routine Copyright Infotechnica Corp. 2000-2009	*/
function flat_shipping(sum){return parseInt("400");}

zoutoutPaymentCount = 0;
function ZoutouPayment(){
	idx = 0;

	this[new String(idx++)] = "銀行振込";
	zoutoutPaymentCount = idx;
	return this;
}
arrZoutouPayment = new ZoutouPayment();

function CheckZoutouPayment(payment){
	var isExist = 0;
	for(i = 0; i < zoutoutPaymentCount; i++){
		if(payment == arrZoutouPayment[new String(i)]){
			isExist = 1;
			break;
		}
	}
	
	if(isExist == 0){
		alert("送付先を指定した場合は" + payment + "を選べません。");
	}
	return isExist;
}
/*	End of Routine	*/
