/**
 * カートの中身を取得します。
 * @return
 */
function getBuyList(){
	BuyListRemoteProxy.getBuyList(getBuyListCallBack);
} 

function getBuyListCallBack(result){
	update_cart_infomation(result);
}
