function addCart(item_no) {
	$.ajax({
		type: "POST",
		url: "cart_add.php",
		data: "id=" + item_no,
		success: function(msg){
			if(msg == "OK") {
				alert("ショッピングカートへ商品を追加しました");
			} else {
				alert("商品の追加に失敗しました");
			}
		}
	});
}

function deleteItem(item_no) {
	$.ajax({
		type: "POST",
		url: "cart_delete.php",
		data: "id=" + item_no,
		success: function(msg){
			if(msg == "OK") {
				location.reload(true);
			} else {
				alert("商品の削除に失敗しました");
			}
		}
	});
}

function updateQty(obj, item_no) {
	var qty = obj.value;

	$.ajax({
		type: "POST",
		url: "cart_update.php",
		data: "id=" + item_no + "&qty=" + qty,
		success: function(msg){
			if(msg == "OK") {
				location.reload(true);
			} else {
				alert("数量の変更に失敗しました");
			}
		}
	});
}

function updateAllQty(item_no, item_value) {
	$.ajax({
		type: "POST",
		url: "cart_update_all.php",
		data: "id=" + item_no + "&qty=" + item_value,
		success: function(msg){
			if(msg == "OK") {
				location.reload(true);
			} else {
				alert("数量の変更に失敗しました");
			}
		}
	});
}
