function del(id){
	document.location = "../orderItem/delete/order_id/" + id;
}

function updateCart(id, qty){
	if (qty.value == 0){
		del(id);
	}else{
		document.location = "../orderItem/edit?order_id="+ id + "&qty=" + qty.value;
	}
	
}
