//Check whether Cookie is enabled or not
function cookieCheck(){
	if (!navigator.cookieEnabled) {
		alert("このサイトはクッキーを使用しています。\nブラウザのクッキーの受け入れを有効にしてください。");
	}

}
