var successMsg = '選択した商品をお気に入りに追加しました。';
var faildMsg = '選択した商品をお気に入りに登録する際にエラーが起きました。恐れ入りますがしばらく時間をおいてから再度お試しください。';
var deplicateMsg = '選択した商品は、お気に入りに登録されています。';
function bookmark(id,page) {
	$.get(location.protocol+"//"+ location.host + "/e-shop/app",{service:"logincheck",pagename:page,variationid:id},function(html,status){
		checkResult = html.split(",");
		if(checkResult[0] == "1"){
			bookmarkOnLoad(id,page,"link");
		}
		if(checkResult[0] == "0"){
			location.replace(checkResult[1]);
		}
	});
}

function bookmarkOnLoad(id,page,mode){
	$.get(location.protocol+"//"+ location.host + "/e-shop/app",{service:"bookmark",pagename:page,variationid:id,registmode:mode},function(html,status){
		if(html == "1"){
			alert(successMsg);
		}
		if(html == "0"){
			alert(faildMsg);
		}
		if(html == "2"){
			//app.alert("can't run bookmark regist",3);
		}
		if(html == "3"){
			alert(deplicateMsg);
		}
	});
}