
$(function(){
	bookDialog();
});
/* 電子ブックリンク - PC */
function bookDialog(){
	$("a.bookDialog").each(function(){
		if($(this).attr("href")){
			var shref= $(this).attr("href");
			$(this).click(function(){
        window.open(shref, 'viewer','width='+screen.width+',height='+screen.height+',left=0,top=0,resizable=yes,menubar=no,toolbar=no,location=no,status=no,scrollbars=no');
        return false;
    	});
	    $(this).removeClass('bookDialog');
		}
	});
}
	





/* ---------------------------------------------------✁ download */

function downloadBoughtPDF(t)
{
	var s = '有料書籍のPDF版にはパスワードがかかっています。\nパスワード入力を求められましたら、お客様のログイン用メールアドレスを入力してください。';
	
	if (window.confirm(s)){
		window.open(t.href);
	}
	else {
		return false;
	}
	return false;
	//alert('有料書籍のPDF版にはパスワードがかかっています。\nパスワード入力を求められましたら、お客様のログイン用メールアドレスを入力してください。');
}

function downloadBoughtEPUB(t)
{
	if (window.confirm('有有料書籍のePUB版にはお客様のログイン用メールアドレスが埋め込まれています。\n配付など取扱いにご注意ください。')){
		window.open(t.href);
	}
	else {
		return false;
	}
	return false;
	//alert('有料書籍のePUB版にはお客様のログイン用メールアドレスが埋め込まれています。\n配付など取扱いにご注意ください。');
}
