// http://www.attackwork.com/BlogEntry/16/Textarea-Cancel-Enter-or-Return-Key-that-Submits-a-Form-on-FireFox/Default.aspx
function KeyPressReturnCancelBubble(event) {
  var intKeyCode = (event.keyCode ? event.keyCode : (event.which ? event.which : event.charCode));
  if (intKeyCode == 13) {
    event.cancelBubble = true;
  }
  return true;
}

// http://zapruder.main.jp/blog/?p=328
function outerLink(url){
  if(document.all){
    // IE only
    var body = document.getElementsByTagName("body")[0];
    var atag = document.createElement("a");
    atag.href = url;
    atag.target = "_blank";
    body.appendChild(atag);
    atag.click();
    body.removeChild(atag);
  }else{
    window.open(url, "_blank");
  }
}

function bookmarkIcon(referer_url, referer_html) {
  document.write('<div id="head_bookmark">');
  document.write('  <a href="http://b.hatena.ne.jp/append?' + referer_html + '" onclick="outerLink(this.href); return false;"><img src="http://b.hatena.ne.jp/images/append.gif" width="16" height="12" alt="はてなブックマークに登録" title="はてなブックマークに登録" /></a>');
  document.write('  <a href="http://bookmarks.yahoo.co.jp/bookmarklet/showpopup?u=' + referer_url + '&amp;t=' + encodeURIComponent(document.title) + '" onclick="outerLink(this.href); return false;"><img src="http://i.yimg.jp/images/sicons/ybm16.gif" width="16" height="16" alt="Yahoo!ブックマークに登録" title="Yahoo!ブックマークに登録" /></a>');
  document.write('  <a href="http://clip.livedoor.com/redirect?link=' + referer_url + '&amp;title=' + encodeURIComponent(document.title) + '" onclick="outerLink(this.href); return false;"><img src="http://parts.blog.livedoor.jp/img/cmn/clip_16_16_b.gif" width="16" height="16" alt="ライブドアクリップに登録" title="ライブドアクリップに登録" /></a>');
  document.write('  <a href="http://del.icio.us/post?url=' + referer_url + '&amp;title=' + encodeURIComponent(document.title) + '" onclick="outerLink(this.href); return false;"><img src="http://static.delicious.com/img/delicious16.gif" width="16" height="16" alt="deliciousに登録" title="deliciousに登録" /></a>');
  document.write('  <a href="http://buzzurl.jp/entry/' + referer_html + '" onclick="outerLink(this.href); return false;"><img src="http://buzzurl.jp.eimg.jp/static/image/api/icon/add_icon_mini_05.gif" width="16" height="16" alt="Buzzurlに登録" title="Buzzurlに登録" /></a>');
  document.write('  <a href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=' + referer_url + '&amp;title=' + encodeURIComponent(document.title) + '" onclick="outerLink(this.href); return false;"><img src="http://www.google.co.jp/favicon.ico" width="16" height="16" alt="Google Bookmarksに登録" title="Google Bookmarksに登録" /></a>');
  document.write('<\/div>');
}


function bookmarkText(referer_url, referer_html) {
  document.write('<div id="foot_bookmark">');
  document.write('  <img src="/images/emoticons/clip.gif" width="16" height="16" alt="" />ソーシャルブックマークに登録する:');
  document.write('  <a href="http://b.hatena.ne.jp/append?' + referer_html + '" onclick="outerLink(this.href); return false;"><img src="http://b.hatena.ne.jp/images/append.gif" width="16" height="12" alt="はてなブックマークに登録" title="はてなブックマークに登録" /></a>');
  document.write('  <a href="http://bookmarks.yahoo.co.jp/bookmarklet/showpopup?u=' + referer_url + '&amp;t=' + encodeURIComponent(document.title) + '" onclick="outerLink(this.href); return false;"><img src="http://i.yimg.jp/images/sicons/ybm16.gif" width="16" height="16" alt="Yahoo!ブックマークに登録" title="Yahoo!ブックマークに登録" /></a>');
  document.write('  <a href="http://clip.livedoor.com/redirect?link=' + referer_url + '&amp;title=' + encodeURIComponent(document.title) + '" onclick="outerLink(this.href); return false;"><img src="http://parts.blog.livedoor.jp/img/cmn/clip_16_16_b.gif" width="16" height="16" alt="ライブドアクリップに登録" title="ライブドアクリップに登録" /></a>');
  document.write('  <a href="http://del.icio.us/post?url=' + referer_url + '&amp;title=' + encodeURIComponent(document.title) + '" onclick="outerLink(this.href); return false;"><img src="http://static.delicious.com/img/delicious16.gif" width="16" height="16" alt="deliciousに登録" title="deliciousに登録" /></a>');
  document.write('  <a href="http://buzzurl.jp/entry/' + referer_html + '" onclick="outerLink(this.href); return false;"><img src="http://buzzurl.jp.eimg.jp/static/image/api/icon/add_icon_mini_05.gif" width="16" height="16" alt="Buzzurlに登録" title="Buzzurlに登録" /></a>');
  document.write('  <a href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=' + referer_url + '&amp;title=' + encodeURIComponent(document.title) + '" onclick="outerLink(this.href); return false;"><img src="http://www.google.co.jp/favicon.ico" width="16" height="16" alt="Google Bookmarksに登録" title="Google Bookmarksに登録" /></a>');
  document.write('  | <a href="javascript:history.back();">一つ前のページへ戻る</a>');
  document.write('<\/div>');
}
