/*
* @title はてなブックマークする
* @description window.open が上書きされていて使えないページでもはてなブックマークします。
* @license MIT License
*/
"はてなブックマークする",
(
function(){
var a=arguments,d=document,f,o;
if(/^[^{]+{\s*(?:\[native code\]|\/\*[a-v ]+\*\/)\s*}$/.test(self.open)){
open.apply(self,a);
}
else{
try{
f=d.body.appendChild(d.createElement('iframe'));
o=(f.contentWindow||{}).open;
d.body.removeChild(f);
o.apply(self,a);
}
catch(_){
location.href=a[0];
}
}
}
)('http://b.hatena.ne.jp/add?mode=confirm&is_bm=1&title='+escape(document.title)+'&url='+escape(location.href), '_blank', 'width=520,height=600,resizable=1,scrollbars=1')