var bn = false;
function chkbn(idname)
{
	var show = false;
	if(idname == null){
		if(bn == true) show = true;
	}else{
		var e = document.getElementById(idname);
		if(e == null || e.offsetHeight < 30){
			bn = true;
			show = true;
		}
	}

	if(show == true){
		document.body.innerHTML = "コンテンツのデータ取得に失敗しました。<BR>広告除去プログラムが有効になっていないか確認してください。";
	}
}

attachEvent("onload", function(){chkbn(null);});